如果android:tabStripEnabled="false"
不起作用,那么我也认为调用setStripEnabled(boolean stripEnabled)
也没有效果。如果所有这些都是真的,那么您的问题可能不在 TabWidget 中。
我建议查看您的标签指示器。试试这些修改。此代码取自具有选项卡的片段。
这是创建选项卡指示器视图的代码。
View indicator = LayoutInflater.from(getActivity()).inflate(R.layout.tab,
(ViewGroup) mRoot.findViewById(android.R.id.tabs), false);
TabSpec tabSpec = mTabHost.newTabSpec(tag);
tabSpec.setIndicator(indicator);
tabSpec.setContent(tabContentId);
您的标签指示器视图可能与此类似。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:layout_weight="1"
android:background="@drawable/tabselector"
android:padding="5dp" >
<ImageView
android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/tab1icon"/>
</LinearLayout>
现在重要的部分是android:background="@drawable/tabselector"
在 LinearLayout 中。我的看起来像这样。
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Non focused states -->
<item
android:state_focused="false"
android:state_selected="false"
android:state_pressed="false"
android:drawable="@drawable/tab_unselected_light" />
<item
android:state_focused="false"
android:state_selected="true"
android:state_pressed="false"
android:drawable="@drawable/tab_selected_light" />
<!-- Focused states -->
<item
android:state_focused="true"
android:state_selected="true"
android:state_pressed="false"
android:drawable="@drawable/tab_focused_light" />
<!-- Pressed state -->
<item
android:state_pressed="true"
android:drawable="@drawable/tab_pressed_light" />
</selector>
这个 tabselector.xml 是你将@drawable/tab_pressed_light
与你的@drawable/tab_button_active
和交换@drawable/tab_unselected_light
的地方@drawable/tab_button_inactive
请务必检查进入 tabselector.xml 的所有可绘制对象底部没有蓝色条带。当我查看您的图像时,我可以看到该条带上有 5px 的小间隙,这就是让我认为该条带不是来自您的 TabWidget 的原因。希望这可以帮助。