2012-02-29 72 views
2

我已经创建了一个Android标签活动有以下XML代码标签内容的顶部灯罩:如何去除

<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"> 

    <LinearLayout 
     android:orientation="vertical" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent"> 

     <TabWidget 
      android:id="@android:id/tabs" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:layout_marginBottom="5dp" 
      /> 

     <FrameLayout 
      android:id="@android:id/tabcontent" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" /> 

     </LinearLayout> 
</TabHost> 

第一个标签呈现这样在自己的布局文件的WebView:

<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" 
android:layout_height="match_parent" 
android:layout_weight="1" 
android:gravity="center|top" 
android:orientation="vertical" 
android:layout_margin="0dp" android:padding="0dp"> 

<ScrollView 
    android:layout_width="match_parent" android:layout_height="match_parent" 
    android:layout_margin="0dp" android:padding="0dp"> 

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:orientation="vertical" 
     android:layout_margin="0dp" android:padding="0dp"> 

     <WebView android:id="@+id/webview" 
      android:layout_height="match_parent" android:layout_width="fill_parent" android:background="#00000000" 
      android:layout_margin="0dp" android:padding="0dp" 
      /> 

     <Button android:id="@+id/next" android:layout_width="fill_parent" android:layout_height="fill_parent" 
      android:text="@string/hotelPhotosBtn" android:layout_marginLeft="8dp" android:layout_marginRight="8dp"/> 
    </LinearLayout>   

</ScrollView> 

,其结果是呈现这样的活动: enter image description here

我的问题是: 为什么这个阴影出现在标签内容中?我如何删除它? 我已尝试删除它,但它一直在出现。

我已阅读thisthis,但没有人提供帮助。

+0

对不起,我的错...... [第一篇文章(http://stackoverflow.com/questions/3511596/get-rid-最后是答案... – antoniom 2012-03-02 13:03:14

回答