在Android上设置TabWidget的高度?
我正在制作一个 Android 应用程序,它在屏幕底部有一个 TabWidget。
我希望选项卡的高度均为 77px(或者,我想是 dp)。为此,我添加了以下代码行:
<FrameLayout
...
android:layout_height="77dp"
/>
<TabWidget
...
android:layout_height="77dp"
/>
这会将选项卡提升到其原始位置之上,但是,选项卡实际上并没有变高,只是在选项卡下方添加了空白区域。 这是一个屏幕截图来说明我的意思。
有谁知道如何增加 Android 选项卡小部件/选项卡本身的高度?提前致谢!
I'm making an Android app that has a TabWidget along the bottom of the screen.
I want the tabs to all be 77px (or, dp, I suppose) high. To do this, I've added the following lines of code:
<FrameLayout
...
android:layout_height="77dp"
/>
<TabWidget
...
android:layout_height="77dp"
/>
This elevates the tabs above their original position, however, rather than the tabs actually getting taller, there's simply white space added beneath the tabs. Here is a screenshot to show what I mean.
Does anyone know how to increase the height of an Android tab widget / tabs themselves? Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你能发布整个布局吗?我很好奇你做了什么让标签在底部对齐。尝试使用顶部和底部的填充,看看是否有帮助。
安卓:paddingTop =“39dp”
android:paddingBotom="38dp"
如果这没有帮助,请发布您的整个布局。
Can you post the entire layout? I'm curious to see what you did to get the tabs to align at the bottom. Try using the padding top and bottom to see if that helps.
android:paddingTop="39dp"
android:paddingBotom="38dp"
if this doesn't help please post your entire layout.