2012-02-22 59 views
0

我需要一個webView裏面的標籤,應該是一件容易的事情,但我花了幾個小時閱讀帖子和測試建議,我無法找到解決方案!請注意,標籤在底部,頂部的作品!我修改了佈局,創建了特定的活動等等。然後,webview仍然適合全屏!如果有必要,我會在glab上發佈代碼!android webView裏面的標籤總是適合全屏

+0

如果以編程方式添加,請發佈您的webview或代碼的佈局代碼。 – 2012-02-22 12:30:36

回答

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); 
} 
+0

gr8 yar dipali它的工作完美,因爲我想 – 2012-02-22 12:50:38

+0

+1爲偉大的答案,它幫助了我真的:P – mAc 2012-02-22 13:10:02

+0

真棒,真的有幫助!這個問題讓我瘋狂!非常感謝! – Jaume 2012-02-22 13:11:32