You need to use a Theme.AppCompat theme (or descendant) with this activity

前端 未结 30 4012
感动是毒
感动是毒 2020-11-21 04:42

Android Studio 0.4.5

Android documentation for creating custom dialog boxes: http://developer.android.com/guide/topics/ui/dialogs.html

If you want a custom d

30条回答
  •  借酒劲吻你
    2020-11-21 04:53

    Your Activity is extending ActionBarActivity which requires the AppCompat.theme to be applied. Change from ActionBarActivity to Activity or FragmentActivity, it will solve the problem.

    If you use no Action bar then :

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

提交回复
热议问题