activity_pieces.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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:id="@+id/parentRel" android:focusable="true"
  7. android:focusableInTouchMode="true"
  8. android:background="@color/qingcolor" >
  9. <include
  10. android:id="@+id/check_title"
  11. layout="@layout/fragment_title" />
  12. <LinearLayout
  13. android:layout_width="fill_parent"
  14. android:layout_height="0dp"
  15. android:layout_weight="1"
  16. android:orientation="vertical">
  17. <LinearLayout
  18. android:layout_width="fill_parent"
  19. android:layout_height="0px"
  20. android:layout_weight="1"
  21. android:orientation="vertical"
  22. >
  23. <ListView
  24. android:id="@+id/message_listview"
  25. android:layout_width="fill_parent"
  26. android:cacheColorHint="#00000000"
  27. android:layout_height="wrap_content"
  28. android:divider="@null"/>
  29. </LinearLayout>
  30. </LinearLayout>
  31. <LinearLayout
  32. android:layout_width="match_parent"
  33. android:layout_height="45dp"
  34. android:background="#536370"
  35. android:gravity="center_vertical"
  36. android:orientation="horizontal" >
  37. <Button
  38. android:id="@+id/btnsure"
  39. android:layout_width="0px"
  40. android:layout_height="match_parent"
  41. android:layout_weight="1"
  42. android:background="@drawable/login_btn_selector"
  43. android:text="确定"
  44. android:textColor="@color/white"
  45. android:textSize="@dimen/textsize_24" />
  46. </LinearLayout>
  47. </LinearLayout>