我需要一個webView裏面的標籤,應該是一件容易的事情,但我花了幾個小時閱讀帖子和測試建議,我無法找到解決方案!請注意,標籤在底部,頂部的作品!我修改了佈局,創建了特定的活動等等。然後,webview仍然適合全屏!如果有必要,我會在glab上發佈代碼!android webView裏面的標籤總是適合全屏
0
A
回答
3
試試這個
Webview Xml..................
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent"
android:background="@drawable/ab02_bg" >
<WebView android:autoLink="web" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:src="@drawable/ticket_text"
android:id="@+id/TextViewMorTickets" android:textColor="@android:color/black"></WebView>
標籤的Xml ....................
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/ab02_bg" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/hddr" >
</ImageView>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1" >
</FrameLayout>
<ImageView
android:layout_width="fill_parent"
android:layout_height="30dip"
android:baselineAlignBottom="true"
android:id="@+id/BannerImage"
>
</ImageView>
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:tabStripEnabled="false"
/>
</LinearLayout>
</TabHost>
</LinearLayout>
的java文件...... ......................
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.tablayout);
tabHost = getTabHost(); // The activity TabHost
TabHost.TabSpec spec;
spec = tabHost.newTabSpec("TICKETS").setIndicator("").setContent(new Intent().setClass(this, webview.class));
tabHost.addTab(spec);
}
相關問題
- 1. Android webview全屏
- 2. Android中的Webview圖像適合屏幕
- 3. Webview不適合帶有操作欄的全屏幕
- 4. Android WebView動畫到全屏
- 5. Webview正在全屏android
- 6. android webview全屏截圖
- 7. android webview佔用全屏
- 8. Stretch GridView適合全屏
- 9. 全屏DialogFragment不適合
- 10. WebView中的圖像適合屏幕
- 11. Webview自動縮放到適合屏幕
- 12. 第二個x軸標籤不適合裏面圖
- 13. CommandButton Onclick裏面的標籤總是帶我到第一個標籤Primefaces
- 14. 裏面標籤
- 15. 適用於Android Webview的初始屏幕
- 16. Android:有沒有人有在webview屏幕上合適的方法?
- 17. 適合頁面內容適合iphone,android屏幕與javascript
- 18. 適合seekBar抽屜裏面
- 19. Android WebView是否支持框架標籤?
- 20. Android的加載webview內容全屏
- 21. Android Webview,縮放內容以適合屏幕
- 22. Android WebView,縮放圖像以適合屏幕
- 23. Android WebView網頁不適合整個屏幕?
- 24. XML標籤裏面
- 25. 通過webview裏面的標籤與AsyncTask下載文件
- 26. 適合文本里面div
- 27. Android PagerSlidingTabStrip標籤頁和webview
- 28. Url全屏打開而不是Webview
- 29. 如何使用Android Studio創建無標題欄的全屏webview
- 30. 適合webview內的網頁內容(Android)
如果以編程方式添加,請發佈您的webview或代碼的佈局代碼。 – 2012-02-22 12:30:36