为什么选项卡文本与选项卡中的可绘制对象重叠?有没有办法防止这种情况?可绘制对象总是居中吗?如果它提供此输出,那么能够向指示器添加文本和可绘制对象有什么意义。
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"
android:padding="5dp">
<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"
android:padding="5dp" />
</LinearLayout>
</TabHost>
爪哇
host.addTab(host.newTabSpec("_tab2")
.setIndicator("Authors",res.getDrawable(android.R.drawable.ic_menu_mapmode))
.setContent(new Intent(this, AuthorList.class)));
其他人可以帮忙吗?我已经尝试了我能想到的一切,在我的手机和模拟器中看起来都是这样的。我以前使用过标签,但它没有这样做。