123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366 |
- <?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=".DataAnalysis">
- <ScrollView
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <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=".DataAnalysis">
- <HorizontalScrollView
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/TextLinearLayout"
- 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=".DataAnalysis">
- <TextView
- android:id="@+id/rawlog"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginTop="8dp"
- android:layout_marginEnd="8dp"
- android:text=""
- android:textSize="16dp"
- android:textColor="@color/colorPrimary"/>
- <TextView
- android:id="@+id/textView"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginStart="2dp"
- android:layout_marginTop="8dp"
- android:text=""
- android:textSize="16dp"/>
- </LinearLayout>
- </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_marginStart="8dp"
- android:layout_marginEnd="8dp"
- android:layout_gravity="center_vertical"
- 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:textSize="20dp"
- android:textColor="@color/back_red"/>
- <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:textSize="20dp"
- android:textColor="@color/back_red"/>
- <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:textSize="20dp"
- android:textColor="@color/back_red"/>
- <TextView
- android:id="@+id/uniformity"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_marginStart="50dp"
- android:text="@string/uniformity"
- android:textSize="20dp"/>
- <TextView
- android:id="@+id/uniformityshow"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:text="NA"
- android:textSize="20dp"
- android:textColor="@color/back_red"/>
- <TextView
- android:id="@+id/average"
- android:layout_row="1"
- android:layout_column="0"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_marginStart="20dp"
- android:text="@string/average"
- android:textSize="20dp"/>
- <TextView
- android:id="@+id/averageshow"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:text="NA"
- android:textSize="20dp"
- android:textColor="@color/back_red"/>
- <TextView
- android:id="@+id/rmd"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_marginStart="50dp"
- android:text="@string/rmd"
- android:textSize="20dp"/>
- <TextView
- android:id="@+id/rmdshow"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:text="NA"
- android:textSize="20dp"
- android:textColor="@color/back_red"/>
- <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:textSize="20dp"
- android:textColor="@color/back_red"/>
- <TextView
- android:id="@+id/datacontent"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_marginStart="50dp"
- android:text="@string/datacontent"
- android:textSize="20dp"/>
- <TextView
- android:id="@+id/datacontentshow"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:text="[NA]"
- android:textSize="20dp"
- android:textColor="@color/back_red"/>
- </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=".DataAnalysis">
- <TextView
- android:id="@+id/rownum"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:text="@string/rownums"
- android:padding="5dp"
- android:textSize="20dp"/>
- <EditText
- android:id="@+id/inputrownum"
- 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:textAlignment="center"
- android:maxLength="2"
- android:padding="5dp"
- android:textSize="20dp"
- android:singleLine="true"/>
- <TextView
- android:id="@+id/colnum"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:text="@string/colnums"
- android:padding="5dp"
- android:textSize="20dp"/>
- <EditText
- android:id="@+id/inputcolnum"
- 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:textAlignment="center"
- android:maxLength="2"
- android:padding="5dp"
- android:textSize="20dp"
- android:singleLine="true" />
- </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=".DataAnalysis">
- <Button
- android:id="@+id/rawdata"
- 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/rawdata"
- android:textAllCaps="false"
- android:textSize="20dp" />
- <Button
- android:id="@+id/diffdata"
- 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/diffdata"
- android:textAllCaps="false"
- android:textSize="20dp" />
- <Button
- android:id="@+id/reffdata"
- 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/reffdata"
- android:textAllCaps="false"
- android:textSize="20dp" />
- <Button
- android:id="@+id/manualdiff"
- 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/manualdiff"
- android:textAllCaps="false"
- android:textSize="20dp" />
- <Button
- android:id="@+id/manualreff"
- 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/manualreff"
- 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>
- </ScrollView>
- </android.support.constraint.ConstraintLayout>
|