我正在尝试隐藏我的应用程序中的标题栏,我看到很多教程,但没有一个有效,我的应用程序只是立即崩溃。
这是我的表现。当我从@style/AppTheme
更改为@android:style/Theme.NoTitleBar
时,它会在我的手机上崩溃应用
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="hr.com.thetta.www.pleasurre" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar" >
<activity
android:name=".PleasurreMain"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.INTERNET" />
</manifest>
答案 0 :(得分:3)
如果您使用的是支持库,则应使用
Theme.AppCompat.NoActionBar
而不是
Theme.NoActionBar