|
@@ -0,0 +1,68 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:paddingHorizontal="20dp"
|
|
|
+ >
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_marginVertical="10dp"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <TextView
|
|
|
+ style="@style/StyleTextContent"
|
|
|
+ android:layout_width="200dp"
|
|
|
+ android:text="登录页面"
|
|
|
+ />
|
|
|
+ <EditText
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ style="@style/StyleInputContent"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+ </LinearLayout>
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_marginVertical="10dp"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <TextView
|
|
|
+ style="@style/StyleTextContent"
|
|
|
+ android:layout_width="200dp"
|
|
|
+ android:text="副屏页面"
|
|
|
+ />
|
|
|
+ <EditText
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ style="@style/StyleInputContent"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+ </LinearLayout>
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_marginVertical="10dp"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <TextView
|
|
|
+ style="@style/StyleTextContent"
|
|
|
+ android:layout_width="200dp"
|
|
|
+ android:text="待机图片"
|
|
|
+ />
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <Button
|
|
|
+ android:text="添加图片"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+ <androidx.recyclerview.widget.RecyclerView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+</LinearLayout>
|