我附上图片以更详细地解释我的问题。还附加了android清单。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="XXXXXXXXXX"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:targetSdkVersion="15" android:minSdkVersion="8"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:hardwareAccelerated="true">
<activity
android:label="@string/app_name"
android:name="TabsMainActivity"
<!-- If I remove the line below I get normal
ICS action bar instead of title bar u see in below image -->
android:theme="@style/Theme.PageIndicatorDefaults">
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
此外,如果您看到编辑文本和微调器 UI,它就像我们在 ICS 下面的 android 版本上看到的一样。屏幕截图来自我运行 ICS 4.0.4 的手机。