跳至主要内容

博文

目前显示的是标签为“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

The reason you are having this problem is because the activity you are trying to apply the dialog theme to is extending  ActionBarActivity  which requires the  AppCompat  theme to be applied. Change the Java inheritance from  ActionBarActivity  to  Activity  and leave the dialog theme in the manifest as it is.