2.1中如何去掉Tab下的线条?

发布于 2024-12-28 12:38:46 字数 254 浏览 0 评论 0原文

有什么方法可以删除 android 2.1 选项卡下出现的小线吗?

我已经找到了 2.1++ 版本的解决方案,但找不到适用于 android 2.1 或更低版本的任何内容。

//tabHost.getTabWidget().setStripEnabled(false); .

我可以通过在相对布局中制作 tabwidget 和 imageview 来删除此行,以便 imageView 与选项卡下的此行重叠吗?

Is there any way I can remove the small line that appears under tabs for android 2.1?

I have found the solution for for 2.1++ versions but couldn't find anything for android 2.1 or less.

//tabHost.getTabWidget().setStripEnabled(false); .

Can I remove this line by making tabwidget and an imageview in relative layout such that imageView overlaps this line under the tab?

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

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

发布评论

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

评论(1

如歌彻婉言 2025-01-04 12:38:46

我发现的唯一黑客是:

<TabWidget
    android:id="@android:id/tabs"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="-6dp"
    android:layout_marginTop="2dp" />

希望这有帮助!

only hack which i found is:

<TabWidget
    android:id="@android:id/tabs"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginBottom="-6dp"
    android:layout_marginTop="2dp" />

Hope this helps!!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文