当我在 Eclipse 中创建新的 Android 应用程序时,其AndroidManifest.xml
主题设置为 application is android:theme="@style/AppTheme"
& style.xml 如下。
<resources>
<style name="AppTheme" parent="android:Theme.Light" />
</resources>
&我的屏幕是这样的。
我想从应用程序中删除 TitleBar,但想显示 Android 4.1 的主题。
为此,我尝试了
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Light.NoTitleBar" >
现在我的屏幕看起来像这样,TitleBar 已删除,但主题已更改。
请帮我解决这个问题。