97 lines
3.6 KiB
XML
97 lines
3.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".setting.SDSettingActivity"
|
|
android:background="@color/bg_color"
|
|
android:orientation="vertical">
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:background="@color/white">
|
|
<RelativeLayout
|
|
android:id="@+id/back_button"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp">
|
|
<ImageView
|
|
android:layout_width="15dp"
|
|
android:layout_height="25dp"
|
|
android:src="@mipmap/app_img_ico_back"
|
|
android:layout_centerInParent="true"/>
|
|
</RelativeLayout>
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/setting"
|
|
android:layout_centerInParent="true"
|
|
android:textSize="18sp"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="30dp"
|
|
android:paddingLeft="10dp">
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/camera_stting_type_title"
|
|
android:layout_centerVertical="true"/>
|
|
</RelativeLayout>
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
>
|
|
<LinearLayout
|
|
android:id="@+id/camer_cell_1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="60dp"
|
|
android:paddingLeft="10dp"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="这里整一个下拉框,选场馆"
|
|
android:textSize="20dp"
|
|
android:textStyle="bold"
|
|
android:layout_weight="1"/>
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1px"
|
|
android:background="@color/color_gray"></View>
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
>
|
|
<LinearLayout
|
|
android:id="@+id/camer_cell_2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="60dp"
|
|
android:paddingLeft="10dp"
|
|
android:gravity="center_vertical">
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="这里整一个下拉框,只能选出场、进场"
|
|
android:textSize="20dp"
|
|
android:textStyle="bold"
|
|
android:layout_weight="1"/>
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout> |