123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280 |
- <?xml version="1.0" encoding="utf-8"?>
- <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/wingcool_backgroup"
- tools:context=".TestOperation">
- <ScrollView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:layout_editor_absoluteX="0dp"
- tools:layout_editor_absoluteY="0dp">
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/AllLinearLayout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginStart="8dp"
- android:layout_marginLeft="8dp"
- android:layout_marginTop="8dp"
- android:layout_marginEnd="8dp"
- android:layout_marginRight="8dp"
- android:layout_marginBottom="0dp"
- android:orientation="vertical"
- tools:context=".TestOperation">
- <HorizontalScrollView
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- </HorizontalScrollView>
- <HorizontalScrollView
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <TableLayout
- android:id="@+id/tab_01"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- </HorizontalScrollView>
- <GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/SpecialDataGridLayout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center_vertical"
- android:layout_marginStart="8dp"
- android:layout_marginEnd="8dp"
- android:background="@drawable/bg_frame_line"
- android:columnCount="16"
- android:orientation="horizontal"
- android:rowCount="2">
- <TextView
- android:id="@+id/maximum"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_marginStart="20dp"
- android:text="@string/maximum"
- android:textSize="20dp" />
- <TextView
- android:id="@+id/maximumshow"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:text="NA"
- android:textColor="@color/back_red"
- android:textSize="20dp" />
- <TextView
- android:id="@+id/minimum"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_marginStart="50dp"
- android:text="@string/minimum"
- android:textSize="20dp" />
- <TextView
- android:id="@+id/minimumshow"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:text="NA"
- android:textColor="@color/back_red"
- android:textSize="20dp" />
- <TextView
- android:id="@+id/maxsubmin"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_marginStart="50dp"
- android:text="@string/maxsubmin"
- android:textSize="20dp" />
- <TextView
- android:id="@+id/maxsubminshow"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:text="NA"
- android:textColor="@color/back_red"
- android:textSize="20dp" />
- <TextView
- android:id="@+id/mad"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_marginStart="50dp"
- android:text="@string/mad"
- android:textSize="20dp" />
- <TextView
- android:id="@+id/madshow"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:text="NA"
- android:textColor="@color/back_red"
- android:textSize="20dp" />
- </GridLayout>
- <LinearLayout
- android:id="@+id/EditTextLinearLayout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginStart="8dp"
- android:layout_marginTop="8dp"
- android:layout_marginEnd="8dp"
- android:layout_marginBottom="8dp"
- android:orientation="horizontal"
- tools:context=".TestOperation">
- <TextView
- android:id="@+id/maximumthreshold"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:padding="5dp"
- android:text="@string/maximumthreshold"
- android:textSize="20dp" />
- <EditText
- android:id="@+id/inputmaximum"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_margin="0dp"
- android:layout_weight="2"
- android:background="@drawable/bg_frame_search"
- android:digits="@string/input_num"
- android:hint="0"
- android:maxLength="5"
- android:padding="5dp"
- android:singleLine="true"
- android:textAlignment="center"
- android:textSize="20dp" />
- <TextView
- android:id="@+id/minimumthreshold"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:padding="5dp"
- android:text="@string/minimumthreshold"
- android:textSize="20dp" />
- <EditText
- android:id="@+id/inputminimum"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_margin="0dp"
- android:layout_weight="2"
- android:background="@drawable/bg_frame_search"
- android:digits="@string/input_num"
- android:hint="0"
- android:maxLength="5"
- android:padding="5dp"
- android:singleLine="true"
- android:textAlignment="center"
- android:textSize="20dp" />
- <TextView
- android:id="@+id/adjacentdeviationthreshold"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:padding="5dp"
- android:text="@string/adjacentdeviationthreshold"
- android:textSize="20dp" />
- <EditText
- android:id="@+id/inputadjacentdeviation"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_margin="0dp"
- android:layout_weight="2"
- android:background="@drawable/bg_frame_search"
- android:digits="@string/input_num"
- android:hint="0"
- android:maxLength="5"
- android:padding="5dp"
- android:singleLine="true"
- android:textAlignment="center"
- android:textSize="20dp" />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/ButtonLinearLayout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginStart="8dp"
- android:layout_marginLeft="8dp"
- android:layout_marginTop="8dp"
- android:layout_marginEnd="8dp"
- android:layout_marginRight="8dp"
- android:layout_marginBottom="0dp"
- android:orientation="horizontal"
- tools:context=".TestOperation">
- <Button
- android:id="@+id/starttesting"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginStart="0dp"
- android:layout_marginTop="8dp"
- android:layout_marginEnd="0dp"
- android:layout_marginBottom="8dp"
- android:layout_weight="1"
- android:text="@string/starttesting"
- android:textAllCaps="false"
- android:textSize="20dp" />
- <Button
- android:id="@+id/stop"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginStart="0dp"
- android:layout_marginTop="8dp"
- android:layout_marginEnd="0dp"
- android:layout_marginBottom="8dp"
- android:layout_weight="1"
- android:text="@string/stop"
- android:textAllCaps="false"
- android:textSize="20dp" />
- </LinearLayout>
- <LinearLayout xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/TextViewLinearLayout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginStart="8dp"
- android:layout_marginTop="0dp"
- android:layout_marginEnd="8dp"
- android:layout_marginBottom="8dp"
- android:orientation="vertical"
- tools:context=".TestOperation">
- <EditText
- android:id="@+id/testinformation"
- android:layout_width="match_parent"
- android:layout_height="240dp"
- android:layout_marginStart="0dp"
- android:layout_marginTop="0dp"
- android:background="@drawable/bg_frame_search"
- android:text=""
- android:textSize="16dp" />
- <TextView
- android:id="@+id/testresult"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginStart="0dp"
- android:layout_marginTop="0dp"
- android:text=""
- android:textColor="@color/back_red"
- android:textSize="20dp" />
- </LinearLayout>
- </LinearLayout>
- </ScrollView>
- </android.support.constraint.ConstraintLayout>
|