activity_product_test_sheet.xml 926 B

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/parentRel"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="@color/background" >
  7. <include
  8. android:id="@+id/titleset"
  9. layout="@layout/fragment_title" />
  10. <LinearLayout
  11. android:layout_width="fill_parent"
  12. android:layout_height="wrap_content"
  13. android:layout_above="@id/bottomLay"
  14. android:layout_below="@id/titleset"
  15. android:orientation="vertical" >
  16. <ListView
  17. android:id="@+id/productlst"
  18. android:layout_width="fill_parent"
  19. android:layout_height="fill_parent"
  20. android:cacheColorHint="#00000000"
  21. android:divider="@null"
  22. android:listSelector="#00000000" />
  23. </LinearLayout>
  24. </RelativeLayout>