activity_usestorage.xml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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:background="@color/white"
  5. android:layout_height="match_parent"
  6. android:fitsSystemWindows="true"
  7. android:orientation="vertical" >
  8. <RelativeLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="@dimen/ll_layout_height_60"
  11. android:background="@color/oldred"
  12. android:orientation="horizontal" >
  13. <TextView
  14. android:id="@+id/title"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:layout_centerInParent="true"
  18. android:text="请 选 择"
  19. android:textColor="@color/white"
  20. android:textSize="@dimen/textsize_18" />
  21. <TextView
  22. android:id="@+id/tv_right"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:layout_marginRight="10dp"
  26. android:layout_centerVertical="true"
  27. android:layout_alignParentRight="true"
  28. android:textColor="@color/white"
  29. android:text="确定"
  30. android:textSize="@dimen/textsize_18" />
  31. </RelativeLayout>
  32. <ListView
  33. android:id="@+id/listview"
  34. android:layout_width="match_parent"
  35. android:layout_height="match_parent"
  36. ></ListView>
  37. </LinearLayout>