我的Android进阶之旅------>解决错误:You need to use a Theme.AppCompat theme (or descendant) with this activity.

#1、错误描述

今天,想实现Activity不显示标题栏的效果,在项目的AndroidManifest.xml文件,对相应的Activity添加属性

 android:theme="@android:style/Theme.NoTitleBar"

具体代码如下:

<activity android:name=".module.view.activity.KuwoMusicPlayActivity"
            android:theme="@android:style/Theme.NoTitleBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                

你可能感兴趣的:(我的Android进阶之旅)