你如何在
Android导览
http://developer.android.com/guide/topics/ui/dialogs.html中显示Android中的黑色主题对话框
我拍了一个屏幕截图每当我使用警报对话框,我得到左边的对话框,我想要一个在右边.
解决方法
RES /值/ styles.xml
<?xml version="1.0" encoding="utf-8"?> <resources> <style name="default_activity_theme" parent="@android:style/Theme.Holo"/> </resources>
AndroidManifest.xml中
<activity android:name=".ActivityMain" android:theme="@style/default_activity_theme"/>