[안드로이드] You need to use a Theme.AppCompat theme (or descendant) with this activity.
AlertDialog.Builder를 사용할 때에 발생할 수 있는 에러입니다.
new AlertDialog.Builder(getApplicationContext()) 를 new AlertDialog.Builder(this) 로 바꾸시면 해결됩니다.
[안드로이드] You need to use a Theme.AppCompat theme (or descendant) with this activity.
AlertDialog.Builder를 사용할 때에 발생할 수 있는 에러입니다.
new AlertDialog.Builder(getApplicationContext()) 를 new AlertDialog.Builder(this) 로 바꾸시면 해결됩니다.
[안드로이드] error: package R does not exist
error: package R does not exist 는 매니페스트 파일에 액티비티를 적어 주지 않았을 때에 발생합니다.
아래와 같은 식으로 AndroidManifest.xml 파일 안에 액티비티를 적어 주셔야 합니다.
<application>
...
<activity android:name=".MyLovelyActivity"></activity>
</application>