gpt4 book ai didi

android - 如何在布局 XML 文件中设置制表符高度?

转载 作者:行者123 更新时间:2023-11-29 00:45:10 26 4
gpt4 key购买 nike

我曾经使用过:

tabHost.getTabWidget().getChildAt(0).getLayoutParams().height =50;

设置我的标签高度。

但我想将此选项卡高度设置从 Java 代码移动到布局 xml 文件,目的是为 layout/main.xmllayout-large/main 使用不同的高度值.xml

我的问题是如何在 xml 文件中设置标签高度?

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent">


</FrameLayout>
</LinearLayout>
</TabHost>

最佳答案

您可以根据需要在 dip 中指定制表符的高度。您可以使用属性窗口或直接在 .Xml 文件中给出。

          <TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="50dip" />

关于android - 如何在布局 XML 文件中设置制表符高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6748458/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com