activity_recycle.xml 1.4 KB

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