gpt4 book ai didi

android - 如何摆脱tabview下的黑线?

转载 作者:行者123 更新时间:2023-11-29 15:29:04 28 4
gpt4 key购买 nike

我想在 TabView 下应用黑线,

这是我的代码,

<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:background="#ffffff"
android:layout_marginTop="40dip"
android:layout_height="fill_parent">
<LinearLayout android:orientation="vertical"
android:background="#ffffff"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabWidget android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:tabStripEnabled="false"
android:layout_marginBottom="-3dp"
android:layout_height="40dip"
android:layout_marginLeft="0dip"
android:layout_marginRight="0dip" />
<FrameLayout android:id="@android:id/tabcontent"
android:background="#ffffff"
android:layout_height="fill_parent" />

谁能告诉我怎么做?

最佳答案

将自定义主题应用于您的 Activity ,并取消 android:windowContentOverlay 属性。

themes.xml中定义一个主题:

<style name="YourTheme">
...
<item name="android:windowContentOverlay">@null</item>
...
</style>

将主题应用于您的应用程序或 AndroidManifest.xml 中的 Activity :

<application android:theme="@style/YourTheme"
... >

希望对您有所帮助。这让我很头疼......

关于android - 如何摆脱tabview下的黑线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8829767/

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