|
@@ -0,0 +1,158 @@
|
|
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
+ android:id="@+id/root"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_margin="@dimen/common_spacing_small"
|
|
|
|
|
+ android:background="@color/white"
|
|
|
|
|
+ android:orientation="horizontal"
|
|
|
|
|
+ android:padding="@dimen/common_spacing_small">
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:id="@+id/ll_left"
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
+
|
|
|
|
|
+ <ImageView
|
|
|
|
|
+ android:id="@+id/iv_key_1"
|
|
|
|
|
+ android:layout_width="50dp"
|
|
|
|
|
+ android:layout_height="35dp"
|
|
|
|
|
+ android:background="@drawable/dock_key_selector" />
|
|
|
|
|
+
|
|
|
|
|
+ <RelativeLayout
|
|
|
|
|
+ android:id="@+id/rl_status_1"
|
|
|
|
|
+ android:layout_width="50dp"
|
|
|
|
|
+ android:layout_height="20dp"
|
|
|
|
|
+ android:layout_marginVertical="@dimen/common_spacing_small"
|
|
|
|
|
+ android:background="@drawable/dock_key_status_bg_selector"
|
|
|
|
|
+ android:gravity="center">
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tv_status_1"
|
|
|
|
|
+ style="@style/CommonTextView" />
|
|
|
|
|
+ </RelativeLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tv_repair_1"
|
|
|
|
|
+ style="@style/CommonTextView"
|
|
|
|
|
+ android:background="@drawable/common_btn_red_bg"
|
|
|
|
|
+ android:text="@string/repair_key" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
+
|
|
|
|
|
+ <ImageView
|
|
|
|
|
+ android:id="@+id/iv_key_2"
|
|
|
|
|
+ android:layout_width="50dp"
|
|
|
|
|
+ android:layout_height="35dp"
|
|
|
|
|
+ android:background="@drawable/dock_key_selector" />
|
|
|
|
|
+
|
|
|
|
|
+ <RelativeLayout
|
|
|
|
|
+ android:id="@+id/rl_status_2"
|
|
|
|
|
+ android:layout_width="50dp"
|
|
|
|
|
+ android:layout_height="20dp"
|
|
|
|
|
+ android:layout_marginVertical="@dimen/common_spacing_small"
|
|
|
|
|
+ android:background="@drawable/dock_key_status_bg_selector"
|
|
|
|
|
+ android:gravity="center">
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tv_status_2"
|
|
|
|
|
+ style="@style/CommonTextView" />
|
|
|
|
|
+ </RelativeLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tv_repair_2"
|
|
|
|
|
+ style="@style/CommonTextView"
|
|
|
|
|
+ android:background="@drawable/common_btn_red_bg"
|
|
|
|
|
+ android:text="@string/repair_key" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:id="@+id/ll_right"
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
+
|
|
|
|
|
+ <ImageView
|
|
|
|
|
+ android:id="@+id/iv_key_3"
|
|
|
|
|
+ android:layout_width="50dp"
|
|
|
|
|
+ android:layout_height="35dp"
|
|
|
|
|
+ android:background="@drawable/dock_key_selector" />
|
|
|
|
|
+
|
|
|
|
|
+ <RelativeLayout
|
|
|
|
|
+ android:id="@+id/rl_status_3"
|
|
|
|
|
+ android:layout_width="50dp"
|
|
|
|
|
+ android:layout_height="20dp"
|
|
|
|
|
+ android:layout_marginVertical="@dimen/common_spacing_small"
|
|
|
|
|
+ android:background="@drawable/dock_key_status_bg_selector"
|
|
|
|
|
+ android:gravity="center">
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tv_status_3"
|
|
|
|
|
+ style="@style/CommonTextView" />
|
|
|
|
|
+ </RelativeLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tv_repair_3"
|
|
|
|
|
+ style="@style/CommonTextView"
|
|
|
|
|
+ android:background="@drawable/common_btn_red_bg"
|
|
|
|
|
+ android:text="@string/repair_key" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
+
|
|
|
|
|
+ <ImageView
|
|
|
|
|
+ android:id="@+id/iv_key_4"
|
|
|
|
|
+ android:layout_width="50dp"
|
|
|
|
|
+ android:layout_height="35dp"
|
|
|
|
|
+ android:background="@drawable/dock_key_selector" />
|
|
|
|
|
+
|
|
|
|
|
+ <RelativeLayout
|
|
|
|
|
+ android:id="@+id/rl_status_4"
|
|
|
|
|
+ android:layout_width="50dp"
|
|
|
|
|
+ android:layout_height="20dp"
|
|
|
|
|
+ android:layout_marginVertical="@dimen/common_spacing_small"
|
|
|
|
|
+ android:background="@drawable/dock_key_status_bg_selector"
|
|
|
|
|
+ android:gravity="center">
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tv_status_4"
|
|
|
|
|
+ style="@style/CommonTextView" />
|
|
|
|
|
+ </RelativeLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tv_repair_4"
|
|
|
|
|
+ style="@style/CommonTextView"
|
|
|
|
|
+ android:background="@drawable/common_btn_red_bg"
|
|
|
|
|
+ android:text="@string/repair_key" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+</LinearLayout>
|