我在Android中遵循了rekaszero的答案,在tabwidget中删除选项卡之间的空间,但现在我需要设置选项卡自动适应屏幕(在这个迷你教程中,它们太大了,而且不在屏幕上),还需要删除文本,因为选项卡应该只有图标来占据整个选项卡,而不是文本。我可以在main.class中设置它们的宽度,但我不想设置它们的宽,但它们适合auto。
有人能帮我吗?感谢
好的。我在main.xml:上用这段代码替换,计算出了大标签的宽度
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TabHost
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="5dp" >
<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</TabWidget>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dp" >
</FrameLayout>
</LinearLayout>
</TabHost>
</RelativeLayout>
现在我将尝试删除其中的文本。如果你已经知道如何帮助我。感谢