activity_finished_product_edit.xml 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/parentlay"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="@color/qingcolor" >
  7. <include
  8. android:id="@+id/check_title"
  9. layout="@layout/fragment_title" />
  10. <LinearLayout
  11. android:layout_width="fill_parent"
  12. android:layout_height="fill_parent"
  13. android:layout_below="@id/check_title"
  14. android:layout_marginTop="12dp"
  15. android:orientation="vertical" >
  16. <ListView
  17. android:id="@+id/message_listview"
  18. android:layout_width="fill_parent"
  19. android:cacheColorHint="#00000000"
  20. android:listSelector="#00000000"
  21. android:fadingEdge="none"
  22. android:fadingEdgeLength="0dp"
  23. android:layout_height="0dp"
  24. android:layout_weight="1"
  25. android:divider="@null" />
  26. </LinearLayout>
  27. </RelativeLayout>