如何使选项卡视图中的选项卡透明
如何制作一个选项卡视图,使选项卡有点透明,以便您 可以看到选项卡视图托管的列表视图的内容吗?
到目前为止,我尝试通过设置 Alpha 使选项卡/按钮透明,但我认为 Tabhost 的制作方式是按钮后面没有任何东西,所以制作它 透明只会显示黑色背景
谢谢!
How do I make a tabview so that the tabs are a bit transparent so that you
can see the content of a Listview being hosted by the tabview?
So far I tried making the tabs/buttons transparent by setting the alpha, but I think
that the way the Tabhost is made there isn't anything behind the buttons, so making it
transparent will only show a black background
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以隐藏选项卡小部件。并使用按钮
这里我使用了 4 个按钮而不是 tabwidget。在按钮的 onclick 中我使用
类似的东西
tabHost.setCurrentTab(1);
将 alpha 设置为按钮应该可以。
You can hide the tab widget. And use buttons
Here Ive used 4 buttons instead of the tabwidget. And in the button's onclick I use
something like
tabHost.setCurrentTab(1);
Setting alpha to the buttons should work.