This commit is contained in:
2021-03-15 10:40:50 +08:00
13 changed files with 745 additions and 10 deletions

View File

@@ -35,7 +35,7 @@
android:layout_margin="20dip"
android:background="@drawable/retacal_background"
android:orientation="vertical"
android:paddingLeft="15dip"
android:paddingLeft="0dip"
android:paddingRight="15dip">
<LinearLayout
@@ -180,13 +180,22 @@
android:layout_marginLeft="15dip"
android:layout_marginTop="20dip"
android:layout_marginRight="15dip"
android:layout_marginBottom="50dip"
android:layout_marginBottom="20dip"
android:background="@drawable/selector_common_btn"
android:gravity="center"
android:padding="15dip"
android:text="确认授权"
android:textColor="@color/white" />
<android.support.v7.widget.RecyclerView
android:id="@+id/rv_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#F5F5F5" />
</LinearLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>

View File

@@ -0,0 +1,84 @@
<?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">
<LinearLayout
android:layout_width="276dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:background="@drawable/dialogwhite"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="109dp"
android:layout_gravity="center_horizontal"
android:orientation="vertical">
<TextView
android:id="@+id/tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="20dp"
android:text="温馨提示"
android:textColor="#ff000000"
android:textSize="16sp"
android:textStyle="bold" />
<TextView
android:id="@+id/tvPhone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="15dp"
android:layout_marginLeft="20dp"
android:autoLink = "web"
android:layout_marginRight="20dp"
android:text=""
android:textColor="#ff000000"
android:textSize="15sp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:background="@color/light" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="horizontal">
<TextView
android:id="@+id/tvSexCancel"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_weight="1"
android:gravity="center"
android:text="取消"
android:textColor="#000000"
android:textSize="16sp" />
<View
android:layout_width="0.5dp"
android:layout_height="match_parent"
android:background="@color/light" />
<TextView
android:id="@+id/tvSexSend"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_weight="1"
android:gravity="center"
android:text="调职"
android:textColor="#ff333333"
android:textSize="16sp" />
</LinearLayout>
</LinearLayout>
</LinearLayout>

View File

@@ -0,0 +1,86 @@
<?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="wrap_content"
android:layout_marginLeft="23dp"
android:layout_marginTop="19dp"
android:layout_marginRight="23dp"
android:background="#ffffff"
android:orientation="vertical">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rel_01"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="23dp"
android:layout_marginTop="10dp"
android:layout_marginRight="23dp"
android:background="#ffffff"
android:orientation="vertical">
<TextView
android:id="@+id/tv_01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="临时密钥1"
android:textColor="#ff000000"
android:textSize="15sp" />
<TextView
android:id="@+id/tv_delete"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:text="删除"
android:layout_alignParentRight="true"
android:paddingBottom="5dp"
android:textSize="15sp" />
</RelativeLayout>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/rel_02"
android:layout_below="@+id/rel_01"
android:layout_marginLeft="23dp"
android:layout_marginTop="10dp"
android:layout_marginRight="23dp"
android:background="#ffffff"
android:orientation="vertical">
<TextView
android:id="@+id/et_coneten"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="房屋号:"
android:textColor="#ff000000"
android:textSize="15sp" />
</RelativeLayout>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/rel_02"
android:layout_marginLeft="23dp"
android:layout_marginTop="10dp"
android:layout_marginRight="23dp"
android:background="#ffffff"
android:orientation="vertical">
<TextView
android:id="@+id/et_coneten02"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#ff000000"
android:paddingBottom="5dp"
android:textSize="15sp" />
</RelativeLayout>
</RelativeLayout>

View File

@@ -0,0 +1,16 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:omi="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#F5F5F5"
android:orientation="vertical">
<android.support.v7.widget.RecyclerView
android:id="@+id/marking_fragment_recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#F5F5F5" />
</LinearLayout>