我想构建一个自定义对话框,就像图片中显示的那样:
我创建了两个布局,一个用于自定义标题,另一个包含两个编辑文本视图以及两个按钮。这里是 xml
自定义标题
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@drawable/popup_title"
android:gravity="center_vertical">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/addView"
android:textColor="@color/black"
android:paddingLeft="15dp"/>
</LinearLayout>
custom_dialog.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/white" >
<EditText
android:id="@+id/textView1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="@string/title"
android:layout_weight="1" />
<EditText
android:id="@+id/textView2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="@string/details"
android:layout_weight="1" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/btn_add"
android:layout_weight="1"/>
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/btn_cancel"
android:layout_weight="1"/>
</LinearLayout>
</LinearLayout>