1111
This commit is contained in:
67
app/src/main/res/layout/dialog_add_family.xml
Normal file
67
app/src/main/res/layout/dialog_add_family.xml
Normal file
@@ -0,0 +1,67 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="300dp"
|
||||
android:background="@drawable/_xpopup_round3_bg"
|
||||
android:orientation="vertical"
|
||||
android:padding="8dp"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:orientation="horizontal"
|
||||
android:layout_height="wrap_content">
|
||||
<TextView
|
||||
android:layout_width="0dp"
|
||||
|
||||
android:text="新增家庭成员"
|
||||
android:textSize="16sp"
|
||||
android:textColor="#000"
|
||||
android:layout_weight="1"
|
||||
|
||||
android:gravity="center"
|
||||
android:layout_height="30dp"/>
|
||||
<ImageView
|
||||
android:id="@+id/iv_close"
|
||||
android:layout_width="30dp"
|
||||
android:layout_height="30dp"
|
||||
|
||||
android:src="@drawable/ic_close"/>
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
<EditText
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="14sp"
|
||||
android:textColor="#000"
|
||||
android:inputType="number"
|
||||
android:id="@+id/et_input"
|
||||
android:layout_marginTop="16dp"
|
||||
android:digits="0123456789"
|
||||
android:hint="请输入手机号"
|
||||
android:layout_marginRight="8dp"
|
||||
android:layout_marginLeft="8dp"
|
||||
/>
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="注:添加新家庭成员需成员确认才添加成功"
|
||||
android:textSize="12sp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
|
||||
/>
|
||||
<Button
|
||||
android:id="@+id/btn_submit"
|
||||
android:layout_marginLeft="16dp"
|
||||
android:layout_marginRight="16dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="40dp"
|
||||
android:layout_marginTop="40dp"
|
||||
android:text="确认添加"
|
||||
android:textSize="14sp"
|
||||
android:textColor="#fff"
|
||||
android:background="@drawable/selector_common_btn"
|
||||
/>
|
||||
</LinearLayout>
|
||||
@@ -328,5 +328,25 @@
|
||||
android:background="@mipmap/returnme"
|
||||
android:paddingBottom="7dp"/>
|
||||
</LinearLayout>
|
||||
<android.support.v7.widget.RecyclerView
|
||||
android:id="@+id/rv_rec"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
<TextView
|
||||
android:id="@+id/tv_family"
|
||||
android:text="+添加家庭成员"
|
||||
android:textColor="#000"
|
||||
android:textSize="16sp"
|
||||
android:background="@drawable/pay_complete_ststus_background"
|
||||
android:layout_width="match_parent"
|
||||
android:paddingTop="3dp"
|
||||
android:paddingBottom="3dp"
|
||||
android:paddingLeft="10dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:layout_marginLeft="16dp"
|
||||
android:layout_marginRight="16dp"
|
||||
|
||||
android:layout_marginBottom="8dp"
|
||||
android:layout_height="wrap_content"/>
|
||||
</LinearLayout>
|
||||
</layout>
|
||||
Reference in New Issue
Block a user