Advertisement
minafaw3

fragment_product xml

Nov 24th, 2015
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical" android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@drawable/index_background">
  6. <RelativeLayout
  7. android:layout_width="fill_parent"
  8. android:layout_height="fill_parent">
  9. <LinearLayout
  10. android:id="@+id/row1"
  11. android:layout_width="fill_parent"
  12. android:layout_height="wrap_content"
  13. android:background="@drawable/header"
  14. android:layout_marginTop="15dp"
  15. android:orientation="horizontal"
  16. >
  17. <ImageButton
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:src="@drawable/arrow"
  21. android:layout_gravity="center_vertical"
  22. android:paddingLeft="20dp"
  23. android:background="@null"/>
  24. <TextView
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:layout_gravity="center_vertical"
  28. android:padding="10dp"
  29. android:text="Products"
  30. android:textColor="@color/WHITE"
  31. />
  32. </LinearLayout>
  33.  
  34. <ListView
  35. android:id="@+id/listView"
  36. android:layout_width="fill_parent"
  37. android:layout_height="fill_parent"
  38. android:layout_below="@+id/row1"
  39. android:layout_centerVertical="true"
  40. android:layout_centerHorizontal="true" />
  41. </RelativeLayout>
  42. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement