在Android中自定义“警报”对话框

时间:2011-01-24 13:25:14

标签: android alertdialog

我想在警告对话框的浅色背景上以深色显示文字。但我无法弄清楚如何做到这一点。请帮帮我。

感谢。

2 个答案:

答案 0 :(得分:6)

请参阅此示例,它会对您有所帮助:http://www.helloandroid.com/tutorials/how-display-custom-dialog-your-android-application


就像在此示例中为在警告对话框的文件中定义的布局一样。您可以设置警报对话框的样式。

答案 1 :(得分:6)

您可以像在“活动”中一样在XML视图中创建自己的布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:id="@+id/layout_root"
              android:orientation="horizontal"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
              android:padding="10dp"
              >
    <ImageView android:id="@+id/image"
               android:layout_width="wrap_content"
               android:layout_height="fill_parent"
               android:layout_marginRight="10dp"
               />
    <TextView android:id="@+id/text"
              android:layout_width="wrap_content"
              android:layout_height="fill_parent"
              android:textColor="#FFF"
              />
</LinearLayout>

然后,您可以通过在对话框上调用setContentView(View)来在对话框中使用此视图:

Context mContext = getApplicationContext();
Dialog dialog = new Dialog(mContext);

dialog.setContentView(R.layout.custom_dialog);
dialog.setTitle("Custom Dialog");

TextView text = (TextView) dialog.findViewById(R.id.text);
text.setText("Hello, this is a custom dialog!");
ImageView image = (ImageView) dialog.findViewById(R.id.image);
image.setImageResource(R.drawable.android);

如示例所示,您必须在声明内容视图后设置一些值。

http://developer.android.com/guide/topics/ui/dialogs.html#CustomDialog

提供的示例