|
@@ -101,7 +101,7 @@
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_gravity="center_vertical"
|
|
|
- android:text="点阵屏类型:"
|
|
|
+ android:text="@string/led_type"
|
|
|
android:textColor="#000000"
|
|
|
android:textSize="24sp" />
|
|
|
|
|
@@ -132,6 +132,46 @@
|
|
|
|
|
|
<LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
+ android:padding="10dp"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center_vertical"
|
|
|
+ android:text="@string/led_auto_sync_time"
|
|
|
+ android:textColor="#000000"
|
|
|
+ android:textSize="24sp" />
|
|
|
+
|
|
|
+ <RadioGroup
|
|
|
+ android:id="@+id/group_led_sync_time"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/radio_led_sync_time_on"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/str_yes"
|
|
|
+ android:textSize="24sp" />
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/radio_led_sync_time_off"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
+ android:text="@string/str_no"
|
|
|
+ android:textSize="24sp" />
|
|
|
+ </RadioGroup>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="80dp"
|
|
|
android:layout_marginTop="10dp"
|
|
|
android:padding="10dp">
|