You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

156 lines
5.8 KiB

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="500dp"
android:layout_height="360dp"
android:layout_gravity="center"
android:background="@color/white"
android:orientation="vertical"
tools:ignore="MissingDefaultResource">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="25dp"
android:letterSpacing="0.5"
android:text="操作模式"
android:textColor="@color/dark_ink_blue"
android:textSize="30sp"
android:textStyle="bold">
</TextView>
<!--第一行 模式选择-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center|top"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:gravity="center"
android:orientation="horizontal">
<RadioGroup
android:id="@+id/operateModePaintSelectorGroup"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<RadioButton
android:id="@+id/rb_paintone"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:button="@null"
android:background="@drawable/radiobutton_background"
android:textColor="@drawable/radio_button_textcolor"
android:textStyle="bold"
android:checked="true"
android:layout_marginRight="10dp"
android:padding="10dp"
android:textSize="23sp"
android:text="手动作业" />
<RadioButton
android:id="@+id/rb_painttwo"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/radiobutton_background"
android:button="@null"
android:gravity="center"
android:layout_marginRight="10dp"
android:padding="10dp"
android:text="竖直作业"
android:textColor="@drawable/radio_button_textcolor"
android:textSize="23sp"
android:textStyle="bold" />
<RadioButton
android:id="@+id/rb_paintthree"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/radiobutton_background"
android:button="@null"
android:textColor="@drawable/radio_button_textcolor"
android:gravity="center"
android:textStyle="bold"
android:padding="10dp"
android:textSize="23sp"
android:text="竖直自动"/>
<RadioButton
android:id="@+id/rb_paintfour"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/radiobutton_background"
android:button="@null"
android:layout_marginLeft="10dp"
android:textColor="@drawable/radio_button_textcolor"
android:gravity="center"
android:textStyle="bold"
android:padding="10dp"
android:textSize="23sp"
android:text="水平自动"/>
</RadioGroup>
</LinearLayout>
<!--第二行 确认取消-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_gravity="center"
android:layout_marginTop="80dp"
android:gravity="center"
android:orientation="horizontal">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginRight="20dp"
android:gravity="center"
android:background="@drawable/borderbluegreen">
<Button
android:id="@+id/manualModePaintApply"
android:layout_width="200dp"
android:layout_height="match_parent"
android:gravity="center"
android:background="@color/trasnparent"
android:text="确定"
android:textColor="@color/blue_green"
android:textSize="20sp"
android:textStyle="bold">
</Button>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center"
android:background="@drawable/borderorange">
<Button
android:id="@+id/manualModePaintCancel"
android:layout_width="200dp"
android:layout_height="match_parent"
android:background="@color/trasnparent"
android:text="取消"
android:textColor="#ed7041"
android:textSize="20sp"
android:textStyle="bold">
</Button>
</LinearLayout>
</LinearLayout>
</LinearLayout>