3

我想删除标签小部件之间的间距。默认情况下,选项卡之间的间距约为 1px。我知道诸如foursquare或posterous之类的一些应用程序能够删除它。执行此操作的代码如何?我正在使用 2.3 API。

谢谢您的帮助

4

5 回答 5

6

可以使用 getTabHost().getTabWidget().setDividerDrawable(R.drawable.empty_divider) 方法,其中 R.drawable.empty_divider 简单形状为 0px 大小,如

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="line" >
    <size
        android:width="0px"
        android:color="@android:color/black"
        android:dashWidth="0px"
        android:dashGap="0px" />
</shape>
于 2011-04-27T14:13:12.127 回答
5

标签小部件 android:showDividers="none"

于 2013-10-18T05:56:10.873 回答
4

如果您的构建目标是 Honeycomb 以上,您可以使用以下代码。

if (Integer.parseInt(Build.VERSION.SDK) >= Build.VERSION_CODES.HONEYCOMB) {
    tabHost.getTabWidget().setShowDividers(LinearLayout.SHOW_DIVIDER_NONE);
}
于 2012-03-17T11:28:29.963 回答
3

我用这行代码解决了同样的问题:

 tabHost.getTabWidget().setDividerDrawable(null);
于 2013-08-29T03:17:41.373 回答
2

您可以将 android:showDividers="none" 添加到布局 XML

<TabWidget
    android:id="@android:id/tabs"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:showDividers="none" />
于 2014-06-25T02:51:57.037 回答