只是在我的选项卡中膨胀了自定义布局,这解决了我的问题 -
TabSpec tSpecWork = mTabHost.newTabSpec("work");
View tabIndicator = LayoutInflater.from(this).inflate(R.layout.tabimage,mTabHost.getTabWidget(),false);
((TextView) tabIndicator.findViewById(R.id.title_tab)).setText(getString(R.string.message));
((ImageView) tabIndicator.findViewById(R.id.icon_tab)).setImageResource(R.drawable.ic_launcher);
tSpecWork.setIndicator(tabIndicator);
mTabHost.addTab(tSpecWork,
FragmentOne.class, null);
这是我的 tabimage xml 文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_weight="1"
android:padding="5dp" >
<ImageView
android:id="@+id/icon_tab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/title_tab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000000" />
</LinearLayout>