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.
210 lines
7.9 KiB
210 lines
7.9 KiB
|
3 weeks ago
|
<?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="600dp"
|
||
|
|
android:layout_height="360dp"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:background="@drawable/submenupng"
|
||
|
|
android:orientation="vertical"
|
||
|
|
tools:ignore="MissingDefaultResource">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_margin="30dp"
|
||
|
|
android:letterSpacing="0.5"
|
||
|
|
android:text="参数设置"
|
||
|
|
android:textColor="@color/midnightblue"
|
||
|
|
android:textSize="40sp"
|
||
|
|
android:textStyle="bold">
|
||
|
|
|
||
|
|
</TextView>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center|top"
|
||
|
|
android:layout_marginTop="0dp"
|
||
|
|
android:gravity="center"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
<RadioGroup
|
||
|
|
android:id="@+id/parameters_call_group"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center"
|
||
|
|
android:orientation="horizontal" >
|
||
|
|
|
||
|
|
<RadioButton
|
||
|
|
android:id="@+id/rb_one"
|
||
|
|
android:button="@null"
|
||
|
|
android:layout_width="80dp"
|
||
|
|
android:layout_margin="10dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:background="@drawable/radiobutton_background"
|
||
|
|
android:layout_marginLeft="20dp"
|
||
|
|
android:textColor="@drawable/radio_button_textcolor"
|
||
|
|
android:gravity="center"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:checked="true"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:textSize="50sp"
|
||
|
|
android:text="1" />
|
||
|
|
|
||
|
|
<RadioButton
|
||
|
|
android:id="@+id/rb_two"
|
||
|
|
android:layout_width="80dp"
|
||
|
|
android:layout_margin="10dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
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="50sp"
|
||
|
|
android:text="2" />
|
||
|
|
<RadioButton
|
||
|
|
android:id="@+id/rb_three"
|
||
|
|
android:layout_width="80dp"
|
||
|
|
android:layout_margin="10dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
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="50sp"
|
||
|
|
android:text="3" />
|
||
|
|
<RadioButton
|
||
|
|
android:id="@+id/rb_four"
|
||
|
|
android:layout_width="80dp"
|
||
|
|
android:layout_margin="10dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
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="50sp"
|
||
|
|
android:text="4" />
|
||
|
|
<RadioButton
|
||
|
|
android:id="@+id/rb_five"
|
||
|
|
android:layout_width="80dp"
|
||
|
|
android:layout_margin="10dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
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="50sp"
|
||
|
|
android:text="5" />
|
||
|
|
</RadioGroup>
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_marginTop="30dp"
|
||
|
|
android:layout_marginHorizontal="30dp"
|
||
|
|
android:gravity="center"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_margin="4dp"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:gravity="center"
|
||
|
|
android:background="@drawable/borderblue">
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:id="@+id/saveParametersBtn"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:background="@color/trasnparent"
|
||
|
|
android:text="保存"
|
||
|
|
android:textAlignment="center"
|
||
|
|
android:textColor="@color/deepskyblue"
|
||
|
|
android:textSize="18dp"
|
||
|
|
android:textStyle="bold">
|
||
|
|
</Button>
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_margin="4dp"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:gravity="center"
|
||
|
|
android:background="@drawable/borderorange">
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:id="@+id/clearParametersBtn"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:background="@color/trasnparent"
|
||
|
|
android:text="清除"
|
||
|
|
android:textAlignment="center"
|
||
|
|
android:textColor="#ed7041"
|
||
|
|
android:textSize="18dp"
|
||
|
|
android:textStyle="bold">
|
||
|
|
</Button>
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_margin="4dp"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:gravity="center"
|
||
|
|
android:background="@drawable/borderblue">
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:id="@+id/parametersApply"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:background="@color/trasnparent"
|
||
|
|
android:text="使用"
|
||
|
|
android:textColor="@color/deepskyblue"
|
||
|
|
android:textSize="20sp"
|
||
|
|
android:textStyle="bold">
|
||
|
|
</Button>
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_margin="4dp"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:gravity="center"
|
||
|
|
android:background="@drawable/borderorange">
|
||
|
|
<Button
|
||
|
|
android:id="@+id/parametersCancel"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:background="@color/trasnparent"
|
||
|
|
android:text="退出"
|
||
|
|
android:padding="4dp"
|
||
|
|
android:textColor="#ed7041"
|
||
|
|
android:textSize="20sp"
|
||
|
|
android:textStyle="bold">
|
||
|
|
|
||
|
|
</Button>
|
||
|
|
</LinearLayout>
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|