Android TabWidget 删除底部的线条

发布于 2024-11-15 09:24:00 字数 157 浏览 8 评论 0原文

对不起我的英语) 我的类扩展了 TabActivity。如何删除位于 TabWidget 之后的分隔线?或者如何为其设置颜色?

在此处输入图像描述 谢谢!!

Sorry for my English)
My class extends TabActivity. How remove divider, which place after TabWidget? or how setup color for it?

enter image description here
Thanks!!

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

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

发布评论

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

评论(4

我也只是我 2024-11-22 09:24:00

android:tabStripEnabled="false" 放入我们的

Put android:tabStripEnabled="false" in our <TabWidget />

握住我的手 2024-11-22 09:24:00

您需要编写自己的选项卡指示器选择器。为此,您可以在 google 上搜索自定义选项卡指示器,也可以查看我关于 Android 选项卡的文章。我编写了自定义选项卡,以便您可以自定义选项卡指示器。 这里是一个链接我的帖子。您还可以在帖子中找到用于自定义选项卡的有用链接。

You need to write you own Tab Indicator selector. For this you can google for custom tab indicator or you can have a look in my post about Android tabs. I have written custom tabs so that you can customize your tab indicators. Here is a link to my post. You can also find useful link to customize your tab in the post.

网名女生简单气质 2024-11-22 09:24:00

我认为这会有帮助,因为我自己就用过这个。
尽量减少框架布局的边距。
前任:
机器人:layout_marginTop =“-6px”
将代码放在行内。至少这对我有用。

I think this will help, as I myself used this.
Try to reduce the margin of the frame layout.
ex:
android:layout_marginTop="-6px"
put the code inside the line. AT least this worked for me.

梦境 2024-11-22 09:24:00

它对我来说非常有用:

将自定义主题应用于您的活动,并清空 android:windowContentOverlay 属性。

在message.xml中定义主题:

在您的应用程序或 AndroidManifest.xml 中的 Activity 上应用主题:

Its Work for Me Very Nicely:

Apply a custom theme to your activity, and null out the android:windowContentOverlay attribute.

Define a theme in themes.xml:

<style name="YourTheme" parent="if you want">
...
<item name="android:windowContentOverlay">@null</item>
...
</style>

Apply the theme on your application or the activity in AndroidManifest.xml:

<application android:theme="@style/YourTheme"
... >

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