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.
109 lines
3.6 KiB
109 lines
3.6 KiB
|
6 hours 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="40dp"
|
||
|
|
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">
|
||
|
|
|
||
|
|
<EditText
|
||
|
|
android:id="@+id/vertical_calibration_input"
|
||
|
|
android:inputType="numberSigned|numberDecimal"
|
||
|
|
android:background="@drawable/bordergreen"
|
||
|
|
android:layout_width="200dp"
|
||
|
|
android:textColor="@color/deepskyblue"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textSize="40sp">
|
||
|
|
</EditText>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:text="°"
|
||
|
|
android:textColor="@color/deepskyblue"
|
||
|
|
android:textSize="20sp"
|
||
|
|
android:textStyle="bold">
|
||
|
|
|
||
|
|
</TextView>
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_marginTop="40dp"
|
||
|
|
android:gravity="center"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_margin="10dp"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:background="@drawable/borderblue">
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:id="@+id/vertical_calibration_Apply"
|
||
|
|
android:layout_width="180dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_margin="4dp"
|
||
|
|
android:padding="4dp"
|
||
|
|
android:background="@color/trasnparent"
|
||
|
|
android:text="确定"
|
||
|
|
android:textColor="@color/deepskyblue"
|
||
|
|
android:textSize="20sp"
|
||
|
|
|
||
|
|
android:textStyle="bold">
|
||
|
|
|
||
|
|
</Button>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_margin="10dp"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:background="@drawable/borderorange">
|
||
|
|
<Button
|
||
|
|
android:id="@+id/vertical_calibration_Cancel"
|
||
|
|
android:layout_width="180dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_margin="4dp"
|
||
|
|
android:background="@color/trasnparent"
|
||
|
|
android:text="取消"
|
||
|
|
android:padding="4dp"
|
||
|
|
android:textColor="#ed7041"
|
||
|
|
android:textSize="20sp"
|
||
|
|
android:textStyle="bold">
|
||
|
|
|
||
|
|
</Button>
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|