read_state_item.xml 973 B

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical"
  6. android:background="@color/white"
  7. >
  8. <LinearLayout
  9. android:layout_width="fill_parent"
  10. android:layout_height="wrap_content"
  11. android:orientation="horizontal"
  12. android:gravity="center"
  13. >
  14. <TextView
  15. android:layout_width="fill_parent"
  16. android:layout_height="60dp"
  17. android:textSize="@dimen/textsize_14"
  18. android:gravity="center"
  19. android:id="@+id/logreadstate"
  20. android:textColor="@color/black"
  21. android:text="123"
  22. />
  23. </LinearLayout>
  24. <View
  25. android:layout_width="match_parent"
  26. android:layout_height="1dp"
  27. android:background="@color/EBEBEB" />
  28. </LinearLayout>