Android Studio 0.4.5
创建自定义对话框的 Android 文档: http://developer.android.com/guide/topics/ui/dialogs.html
如果需要自定义对话框,则可以将 Activity 显示为对话框,而不是使用对话框 API。只需创建一个活动并将其主题设置为主题。你好。对话
<activity>
清单元素:
<activity android:theme="@android:style/Theme.Holo.Dialog" >
然而,当我尝试这种方法时,我得到了下面的例外:
java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity
我支持以下内容,并且我不能在 min 中使用大于10的内容:
minSdkVersion 10
targetSdkVersion 19
我的风格如下:
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
在我的旅客名单上有这个:
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:theme="@android:style/Theme.Holo.Light.Dialog"
android:name="com.ssd.register.Dialog_update"
android:label="@string/title_activity_dialog_update" >
</activity>
像这样创建对话框是我希望做的事情,因为我已经完成了布局。
有人能告诉我怎样才能解决这个问题吗?