4

当我在 Eclipse 中创建新的 Android 应用程序时,其AndroidManifest.xml主题设置为 application is android:theme="@style/AppTheme"& style.xml 如下。

   <resources>
       <style name="AppTheme" parent="android:Theme.Light" />
   </resources>

&我的屏幕是这样的。 android:theme= 时的图像

我想从应用程序中删除 TitleBar,但想显示 Android 4.1 的主题。

为此,我尝试了

<application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Light.NoTitleBar" >

现在我的屏幕看起来像这样,TitleBar 已删除,但主题已更改。

android:theme= 时的图像

请帮我解决这个问题。

4

2 回答 2

6

改用这个:@android:style/Theme.Holo.NoActionBar

于 2013-01-28T13:03:31.970 回答
0

试着把它放在你的清单中。

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
于 2013-01-28T13:09:51.623 回答