| 123456789101112131415161718192021222324252627282930 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:background="@color/white"
- >
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- android:gravity="center"
- >
-
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="60dp"
- android:textSize="@dimen/textsize_14"
- android:gravity="center"
- android:id="@+id/logreadstate"
- android:textColor="@color/black"
- android:text="123"
- />
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/EBEBEB" />
- </LinearLayout>
|