|
@@ -8,154 +8,206 @@
|
|
|
android:id="@+id/timeout"
|
|
|
android:layout_width="50dp"
|
|
|
android:layout_height="50dp"
|
|
|
- android:layout_x="285dp"
|
|
|
- android:layout_y="518dp"
|
|
|
+ android:layout_x="271dp"
|
|
|
+ android:layout_y="35dp"
|
|
|
android:gravity="center"
|
|
|
android:textSize="22dp"
|
|
|
- android:textStyle="bold"/>
|
|
|
+ android:textStyle="bold" />
|
|
|
|
|
|
<TextView
|
|
|
+ android:id="@+id/take_text_title"
|
|
|
+ android:layout_width="120dp"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:layout_x="122dp"
|
|
|
+ android:layout_y="40dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/select_cabinet"
|
|
|
+ android:textColor="@color/black"
|
|
|
+ android:textSize="16dp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/return_btn"
|
|
|
+ android:layout_width="80dp"
|
|
|
+ android:layout_height="30dp"
|
|
|
+ android:layout_x="10dp"
|
|
|
+ android:layout_y="44dp"
|
|
|
+ android:background="@drawable/back_btn" />
|
|
|
+<!--微小柜-->
|
|
|
+ <!-- 微小柜 - 图片 -->
|
|
|
+ <TextView
|
|
|
android:id="@+id/tiny_cabinet_bg"
|
|
|
+ android:layout_width="115dp"
|
|
|
+ android:layout_height="210dp"
|
|
|
+ android:layout_x="50dp"
|
|
|
+ android:layout_y="130dp"
|
|
|
+ android:background="@drawable/cabinet_mini" />
|
|
|
+ <!-- 微小柜 - 剩余数 -->
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tiny_cabinet"
|
|
|
android:layout_width="60dp"
|
|
|
- android:layout_height="60dp"
|
|
|
- android:layout_x="30dp"
|
|
|
- android:layout_y="363dp"
|
|
|
- android:background="@drawable/mini"
|
|
|
+ android:layout_height="20dp"
|
|
|
+ android:layout_x="76dp"
|
|
|
+ android:layout_y="310dp"
|
|
|
android:gravity="center"
|
|
|
- android:text="@string/tiny_cabinet"
|
|
|
android:textColor="@color/black"
|
|
|
- android:textSize="10dp" />
|
|
|
+ android:textSize="8dp" />
|
|
|
|
|
|
+ <!-- 微小柜 - 文案 -->
|
|
|
<TextView
|
|
|
- android:id="@+id/small_cabinet_bg"
|
|
|
- android:layout_width="65dp"
|
|
|
- android:layout_height="65dp"
|
|
|
- android:layout_x="98dp"
|
|
|
- android:layout_y="358dp"
|
|
|
- android:background="@drawable/small"
|
|
|
+ android:id="@+id/tiny_cabinet_text"
|
|
|
+ android:layout_width="115dp"
|
|
|
+ android:layout_height="20dp"
|
|
|
+ android:layout_x="50dp"
|
|
|
+ android:layout_y="340dp"
|
|
|
android:gravity="center"
|
|
|
- android:text="@string/small_cabinet"
|
|
|
- android:textColor="@color/black"
|
|
|
- android:textSize="15dp" />
|
|
|
+ android:text="@string/tiny_cabinet"
|
|
|
+ android:textSize="10dp"
|
|
|
+ android:textStyle="bold" />
|
|
|
|
|
|
+ <!-- 微小柜 - 选择按钮 -->
|
|
|
<Button
|
|
|
- android:id="@+id/small_cabinet_btn"
|
|
|
- android:layout_width="60dp"
|
|
|
+ android:id="@+id/tiny_cabinet_btn"
|
|
|
+ android:layout_width="115dp"
|
|
|
android:layout_height="30dp"
|
|
|
- android:layout_x="101dp"
|
|
|
- android:layout_y="429dp"
|
|
|
- android:background="@drawable/button_radius"
|
|
|
- android:theme="@style/Theme.ButtonStyle.GREEN"
|
|
|
+ android:layout_x="50dp"
|
|
|
+ android:layout_y="360dp"
|
|
|
+ android:background="@drawable/cabinet_select"
|
|
|
android:enabled="false"
|
|
|
android:text="@string/choose_btn"
|
|
|
- android:textSize="8dp" />
|
|
|
+ android:textSize="8dp"
|
|
|
+ android:theme="@style/Theme.ButtonStyle.BLUE" />
|
|
|
+<!--小柜-->
|
|
|
+ <!--小柜 - 图片-->
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/small_cabinet_bg"
|
|
|
+ android:layout_width="115dp"
|
|
|
+ android:layout_height="210dp"
|
|
|
+ android:layout_x="237dp"
|
|
|
+ android:layout_y="130dp"
|
|
|
+ android:background="@drawable/cabinet_middle" />
|
|
|
|
|
|
+ <!--小柜 - 剩余数-->
|
|
|
<TextView
|
|
|
android:id="@+id/small_cabinet"
|
|
|
- android:layout_width="65dp"
|
|
|
+ android:layout_width="60dp"
|
|
|
android:layout_height="20dp"
|
|
|
- android:layout_x="98dp"
|
|
|
- android:layout_y="403dp"
|
|
|
+ android:layout_x="264dp"
|
|
|
+ android:layout_y="310dp"
|
|
|
android:gravity="center"
|
|
|
android:textColor="@color/black"
|
|
|
android:textSize="8dp" />
|
|
|
-
|
|
|
+ <!-- 小柜 - 文案 -->
|
|
|
<TextView
|
|
|
- android:id="@+id/tiny_cabinet"
|
|
|
- android:layout_width="60dp"
|
|
|
+ android:id="@+id/small_cabinet_text"
|
|
|
+ android:layout_width="115dp"
|
|
|
android:layout_height="20dp"
|
|
|
- android:layout_x="30dp"
|
|
|
- android:layout_y="403dp"
|
|
|
+ android:layout_x="237dp"
|
|
|
+ android:layout_y="340dp"
|
|
|
android:gravity="center"
|
|
|
- android:textColor="@color/black"
|
|
|
- android:textSize="8dp" />
|
|
|
-
|
|
|
+ android:text="@string/small_cabinet"
|
|
|
+ android:textSize="10dp"
|
|
|
+ android:textStyle="bold" />
|
|
|
+ <!--小柜 - 选择按钮-->
|
|
|
<Button
|
|
|
- android:id="@+id/tiny_cabinet_btn"
|
|
|
- android:layout_width="60dp"
|
|
|
+ android:id="@+id/small_cabinet_btn"
|
|
|
+ android:layout_width="115dp"
|
|
|
android:layout_height="30dp"
|
|
|
- android:layout_x="30dp"
|
|
|
- android:layout_y="428dp"
|
|
|
- android:background="@drawable/button_radius"
|
|
|
- android:theme="@style/Theme.ButtonStyle.GREEN"
|
|
|
+ android:layout_x="238dp"
|
|
|
+ android:layout_y="360dp"
|
|
|
+ android:background="@drawable/cabinet_select"
|
|
|
android:enabled="false"
|
|
|
android:text="@string/choose_btn"
|
|
|
- android:textSize="8dp" />
|
|
|
+ android:textSize="8dp"
|
|
|
+ android:theme="@style/Theme.ButtonStyle.BLUE" />
|
|
|
|
|
|
+<!-- 中柜 -->
|
|
|
+ <!-- 中柜 - 图片 -->
|
|
|
<TextView
|
|
|
- android:id="@+id/big_cabinet_bg"
|
|
|
- android:layout_width="75dp"
|
|
|
- android:layout_height="75dp"
|
|
|
- android:layout_x="252dp"
|
|
|
- android:layout_y="348dp"
|
|
|
- android:background="@drawable/large"
|
|
|
- android:gravity="center"
|
|
|
- android:text="@string/big_cabinet"
|
|
|
- android:textColor="@color/black"
|
|
|
- android:textSize="20dp" />
|
|
|
-
|
|
|
+ android:id="@+id/medium_cabinet_bg"
|
|
|
+ android:layout_width="115dp"
|
|
|
+ android:layout_height="210dp"
|
|
|
+ android:layout_x="50dp"
|
|
|
+ android:layout_y="430dp"
|
|
|
+ android:background="@drawable/cabinet_small" />
|
|
|
+ <!-- 中柜 - 剩余数 -->
|
|
|
<TextView
|
|
|
- android:id="@+id/big_cabinet"
|
|
|
- android:layout_width="75dp"
|
|
|
+ android:id="@+id/medium_cabinet"
|
|
|
+ android:layout_width="60dp"
|
|
|
android:layout_height="20dp"
|
|
|
- android:layout_x="252dp"
|
|
|
- android:layout_y="403dp"
|
|
|
+ android:layout_x="76dp"
|
|
|
+ android:layout_y="610dp"
|
|
|
android:gravity="center"
|
|
|
android:textColor="@color/black"
|
|
|
android:textSize="8dp" />
|
|
|
-
|
|
|
+ <!-- 中柜 - 文案 -->
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/medium_cabinet_text"
|
|
|
+ android:layout_width="115dp"
|
|
|
+ android:layout_height="20dp"
|
|
|
+ android:layout_x="50dp"
|
|
|
+ android:layout_y="640dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/medium_cabinet"
|
|
|
+ android:textSize="10dp"
|
|
|
+ android:textStyle="bold" />
|
|
|
+ <!-- 中柜 - 选择按钮 -->
|
|
|
<Button
|
|
|
- android:id="@+id/big_cabinet_btn"
|
|
|
- android:layout_width="60dp"
|
|
|
+ android:id="@+id/medium_cabinet_btn"
|
|
|
+ android:layout_width="115dp"
|
|
|
android:layout_height="30dp"
|
|
|
- android:layout_x="258dp"
|
|
|
- android:layout_y="428dp"
|
|
|
- android:background="@drawable/button_radius"
|
|
|
- android:theme="@style/Theme.ButtonStyle.GREEN"
|
|
|
+ android:layout_x="50dp"
|
|
|
+ android:layout_y="660dp"
|
|
|
+ android:background="@drawable/cabinet_select"
|
|
|
android:enabled="false"
|
|
|
android:text="@string/choose_btn"
|
|
|
- android:textSize="8dp" />
|
|
|
+ android:textSize="8dp"
|
|
|
+ android:theme="@style/Theme.ButtonStyle.BLUE" />
|
|
|
|
|
|
+<!-- 大柜 -->
|
|
|
+ <!-- 大柜 - 图片 -->
|
|
|
<TextView
|
|
|
- android:id="@+id/medium_cabinet_bg"
|
|
|
- android:layout_width="70dp"
|
|
|
- android:layout_height="70dp"
|
|
|
- android:layout_x="172dp"
|
|
|
- android:layout_y="353dp"
|
|
|
- android:background="@drawable/medium"
|
|
|
- android:gravity="center"
|
|
|
- android:text="@string/medium_cabinet"
|
|
|
- android:textColor="@color/black"
|
|
|
- android:textSize="18dp" />
|
|
|
+ android:id="@+id/big_cabinet_bg"
|
|
|
+ android:layout_width="115dp"
|
|
|
+ android:layout_height="210dp"
|
|
|
+ android:layout_x="237dp"
|
|
|
+ android:layout_y="430dp"
|
|
|
+ android:background="@drawable/cabinet_large" />
|
|
|
|
|
|
+ <!-- 大柜 - 剩余数 -->
|
|
|
<TextView
|
|
|
- android:id="@+id/medium_cabinet"
|
|
|
- android:layout_width="70dp"
|
|
|
+ android:id="@+id/big_cabinet"
|
|
|
+ android:layout_width="60dp"
|
|
|
android:layout_height="20dp"
|
|
|
- android:layout_x="172dp"
|
|
|
- android:layout_y="403dp"
|
|
|
+ android:layout_x="264dp"
|
|
|
+ android:layout_y="610dp"
|
|
|
android:gravity="center"
|
|
|
android:textColor="@color/black"
|
|
|
android:textSize="8dp" />
|
|
|
|
|
|
+ <!-- 大柜 - 文案 -->
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/big_cabinet_text"
|
|
|
+ android:layout_width="115dp"
|
|
|
+ android:layout_height="20dp"
|
|
|
+ android:layout_x="237dp"
|
|
|
+ android:layout_y="640dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/big_cabinet"
|
|
|
+ android:textSize="10dp"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <!-- 大柜 - 选择按钮 -->
|
|
|
<Button
|
|
|
- android:id="@+id/medium_cabinet_btn"
|
|
|
- android:layout_width="60dp"
|
|
|
+ android:id="@+id/big_cabinet_btn"
|
|
|
+ android:layout_width="115dp"
|
|
|
android:layout_height="30dp"
|
|
|
- android:layout_x="177dp"
|
|
|
- android:layout_y="428dp"
|
|
|
- android:background="@drawable/button_radius"
|
|
|
- android:theme="@style/Theme.ButtonStyle.GREEN"
|
|
|
+ android:layout_x="237dp"
|
|
|
+ android:layout_y="660dp"
|
|
|
+ android:background="@drawable/cabinet_select"
|
|
|
android:enabled="false"
|
|
|
android:text="@string/choose_btn"
|
|
|
- android:textSize="8dp" />
|
|
|
+ android:textSize="8dp"
|
|
|
+ android:theme="@style/Theme.ButtonStyle.BLUE" />
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/return_btn"
|
|
|
- android:layout_width="80dp"
|
|
|
- android:layout_height="30dp"
|
|
|
- android:layout_x="30dp"
|
|
|
- android:layout_y="529dp"
|
|
|
- android:background="@drawable/return1" />
|
|
|
|
|
|
</AbsoluteLayout>
|