Android Studio隐藏标题栏崩溃应用程序

时间:2015-02-09 21:50:06

标签: android

我正在尝试隐藏我的应用程序中的标题栏,我看到很多教程,但没有一个有效,我的应用程序只是立即崩溃。 这是我的表现。当我从@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>

1 个答案:

答案 0 :(得分:3)

如果您使用的是支持库,则应使用

Theme.AppCompat.NoActionBar

而不是

Theme.NoActionBar