在我的应用程序中,我正在使用:
android 主题 = @android:style/Theme.DeviceDefault.Light.NoActionBar.Fullscreen 但 Eclipse 显示错误。
错误是:所需版本(API 14),当前最小值为 7。
但在另一个应用程序中我使用相同的代码它没有显示任何错误.......为什么?
我的清单:
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="17" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.DeviceDefault.Light.NoActionBar.Fullscreen" >