编辑Dialog
说明:编辑对话框,在弹出的对话框内可进行编辑文本
这里以新建一个家庭为例,编辑对话框主要用于创建家庭时编辑家庭昵称
首先是编辑对话框的布局,新建布局文件create_home.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:id="@+id/modify_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="15dp"
android:ems