这太奇怪了。
最好的方法是给你看一张图片:
我没有设置任何主题或类似的东西,所以应该使用默认的...
任何的想法?
编辑:这是同一个设备!安卓 4.2 模拟器。
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="es.triiui.myapp.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="es.triiui.myapp.Activity_EditDetails"
android:label="@string/title_activity_activity__edit_details" >
</activity>
<activity
android:name="es.triiui.myapp.AddNewEntry"
android:label="@string/title_activity_add_new_entry" >
</activity>
<activity
android:name="es.triiui.myapp.ShowDetails"
android:label="@string/title_activity_show_details" >
</activity>
<activity
android:name="es.triiui.myapp.Setpassword"
android:label="@string/title_activity_setpassword" >
</activity>
</application>
(values/styles.xml) 是:
<resources>
<style name="AppBaseTheme" parent="android:Theme.Light">
</style>
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>
</resources>
(values-ca/styles.xml) 是:
<resources>
<style name="AppBaseTheme" parent="android:Theme.Light">
</style>
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>
</resources>
两者完全相同。
任何的想法?