[Android] you need to use a Theme.AppCompat theme (or descendant) with this activity


[Android] you need to use a Theme.AppCompat theme (or descendant) with this activity

오류 해결 "you need to use a Theme.AppCompat theme (or descendant) with this activity" 오류는 액티비에서 풀스크린을 사용하거나 타이틀바를 없앨때 발생합니다. 따라서, 풀스크린 혹은 타이틀바를 없앨때에는 "AppCompatActivity" 대신 "Activity"를 사용하면 된다. <activity android:name=".MainActivity" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> public class MainActivity ext...


#Activity #android #AppCompatActivity #안드로이드

원문링크 : [Android] you need to use a Theme.AppCompat theme (or descendant) with this activity