value_flag_item.xml 985 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:background="@color/white"
  6. android:orientation="vertical" >
  7. <LinearLayout
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:gravity="center"
  11. android:orientation="horizontal" >
  12. <TextView
  13. android:id="@+id/valueflagitem"
  14. android:layout_width="fill_parent"
  15. android:layout_height="60dp"
  16. android:layout_marginLeft="8dp"
  17. android:gravity="center"
  18. android:text="123"
  19. android:textColor="@color/black"
  20. android:textSize="@dimen/textsize_14" />
  21. </LinearLayout>
  22. <View
  23. android:layout_width="match_parent"
  24. android:layout_height="1dp"
  25. android:background="@color/EBEBEB" />
  26. </LinearLayout>