如何删除选项卡小部件之间的空格?
我想删除选项卡小部件之间的间距。默认情况下,选项卡之间的间距约为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用 getTabHost().getTabWidget().setDividerDrawable(R.drawable.empty_divider) 方法,
其中 R.drawable.empty_divider 大小为 0px 的简单形状,例如
You can use getTabHost().getTabWidget().setDividerDrawable(R.drawable.empty_divider) method,
where R.drawable.empty_divider simple shape with 0px size, such as
TabWidget android:showDividers="无"
TabWidget android:showDividers="none"
如果您的构建目标是 Honeycomb 及以上版本,则可以使用以下代码。
If your build target is Honeycomb onwards, you may use the following code.
我用这行代码解决了同样的问题:
I solve this same problem with this line of code:
您可以将 android:showDividers="none" 添加到布局 XML
You can add android:showDividers="none" to Layout XML