如何删除选项卡小部件之间的空格?

发布于 2024-11-03 14:56:43 字数 122 浏览 0 评论 0原文

我想删除选项卡小部件之间的间距。默认情况下,选项卡之间的间距约为 1px。我知道一些应用程序(例如 foursquare 或海报)可以将其删除。执行此操作的代码是什么样的?我正在使用 2.3 API。

感谢您的帮助

I would like to remove the spacing between tabwidgets. By default there is around 1px spacings between tabs. I know some apps like foursquare or posterous are able to remove it. How is the code to do this would look like? I am using 2.3 API.

Thank you for your help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

撑一把青伞 2024-11-10 14:56:43

您可以使用 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>

You can use getTabHost().getTabWidget().setDividerDrawable(R.drawable.empty_divider) method,
where R.drawable.empty_divider simple shape with 0px size, such as

<?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>
拥抱我好吗 2024-11-10 14:56:43

TabWidget android:showDividers="无"

TabWidget android:showDividers="none"

狂之美人 2024-11-10 14:56:43

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

if (Integer.parseInt(Build.VERSION.SDK) >= Build.VERSION_CODES.HONEYCOMB) {
    tabHost.getTabWidget().setShowDividers(LinearLayout.SHOW_DIVIDER_NONE);
}

If your build target is Honeycomb onwards, you may use the following code.

if (Integer.parseInt(Build.VERSION.SDK) >= Build.VERSION_CODES.HONEYCOMB) {
    tabHost.getTabWidget().setShowDividers(LinearLayout.SHOW_DIVIDER_NONE);
}
乖乖哒 2024-11-10 14:56:43

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

 tabHost.getTabWidget().setDividerDrawable(null);

I solve this same problem with this line of code:

 tabHost.getTabWidget().setDividerDrawable(null);
软糖 2024-11-10 14:56:43

您可以将 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" />

You can add android:showDividers="none" to Layout XML

<TabWidget
    android:id="@android:id/tabs"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:showDividers="none" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文