TabSpec.setIndicator图片标题只能显示一个的解决办法

TabSpec ts1=tabHost.newTabSpec("Tab1");


//设置首页显示的标题和图标,图片或者文字只能显示一个,只有当文字为空的时候,才显示图片
ts1.setIndicator("首页",getResources().getDrawable(android.R.drawable.ic_menu_call));


//设置此分页的内容

ts1.setContent(new Intent(MainActivity.this,Home.class));

tabHost.addTab(ts1);


将android:theme改成Theme.black即可

Theme.holo不支持同时显示


<application android:allowBackup="true" 

android:icon="@drawable/ic_launcher" 

android:label="@string/app_name" 

android:theme="@android:style/Theme.Black" >

你可能感兴趣的:(TabSpec.setIndicator图片标题只能显示一个的解决办法)