gpt4 book ai didi

android - 如何删除选项卡内容上的顶部阴影

转载 作者:搜寻专家 更新时间:2023-11-01 09:09:19 24 4
gpt4 key购买 nike

我使用以下 XML 代码创建了一个 Android 选项卡 Activity :

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

结果是呈现如下内容的 Activity : enter image description here

我的问题是:为什么这个阴影出现在选项卡内容中?我怎样才能删除它?我已尽一切努力将其删除,但它一直出现。

我已阅读 thisthis但没有人帮忙。

最佳答案

关于android - 如何删除选项卡内容上的顶部阴影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9496106/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com