我想在TabView下应用Black Line,
这是我的代码,
<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" />
任何人都可以告诉我该怎么做吗?
答案 0 :(得分:3)
将自定义主题应用于您的活动,并将android:windowContentOverlay
属性归零。
在themes.xml
中定义主题:
<style name="YourTheme">
...
<item name="android:windowContentOverlay">@null</item>
...
</style>
在您的应用程序或 AndroidManifest.xml中的活动中应用主题:
<application android:theme="@style/YourTheme"
... >
希望它有所帮助。这让我很头疼......
答案 1 :(得分:1)
前几天我遇到了同样的问题。我已经完成了stackoverflow.There有各种各样的问题已经存在。请通过以下链接
答案 2 :(得分:1)
你可以把它放在tabwidget中
android:tabStripEnabled="false"
删除该行
答案 3 :(得分:0)
你在谈论TabWidget底部的分隔符吗?如果是这样,只需将android:layout_marginBottom="-5px"
添加到TabWidget即可。这会将TabWidget从屏幕底部移开5个像素,这样就足以让你看不到分隔线了。
我认为你正在使用的FrameLayout将在大小上进行补偿,以便完美地运行。