Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.45 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"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent"
  6. android:weightSum="4">
  7. <ListView
  8. android:minWidth="25px"
  9. android:minHeight="25px"
  10. android:layout_width="fill_parent"
  11. android:layout_height="0dp"
  12. android:layout_weight="1"
  13. android:id="@+id/startmenu_lv_spotlight"
  14. android:listSelector="@drawable/selector_view" />
  15. <LinearLayout
  16. android:orientation="horizontal"
  17. android:layout_width="fill_parent"
  18. android:layout_weight="1"
  19. android:layout_height="0dp"
  20. android:weightSum="2">
  21. <ImageView
  22. android:src="@android:drawable/ic_menu_gallery"
  23. android:layout_width="wrap_content"
  24. android:id="@+id/startmenu_iv_shops"
  25. android:layout_weight="1"
  26. android:scaleType="centerCrop"
  27. android:layout_height="fill_parent" />
  28. <ImageView
  29. android:src="@android:drawable/ic_menu_gallery"
  30. android:layout_width="wrap_content"
  31. android:layout_weight="1"
  32. android:id="@+id/startmenu_iv_categories"
  33. android:scaleType="centerCrop"
  34. android:layout_height="fill_parent" />
  35. </LinearLayout>
  36. <ImageView
  37. android:src="@android:drawable/ic_menu_gallery"
  38. android:layout_width="fill_parent"
  39. android:layout_weight="1"
  40. android:id="@+id/startmenu_iv_review"
  41. android:scaleType="centerCrop"
  42. android:layout_height="0dp" />
  43. <LinearLayout
  44. android:orientation="horizontal"
  45. android:layout_width="fill_parent"
  46. android:layout_weight="1"
  47. android:layout_height="0dp"
  48. android:weightSum="2">
  49. <ImageView
  50. android:src="@android:drawable/ic_menu_gallery"
  51. android:layout_weight="1"
  52. android:layout_width="wrap_content"
  53. android:scaleType="centerCrop"
  54. android:id="@+id/startmenu_iv_newmovie"
  55. android:layout_height="fill_parent" />
  56. <ImageView
  57. android:src="@android:drawable/ic_menu_gallery"
  58. android:layout_weight="1"
  59. android:layout_width="wrap_content"
  60. android:scaleType="centerCrop"
  61. android:id="@+id/startmenu_iv_personalactions"
  62. android:layout_height="fill_parent" />
  63. </LinearLayout>
  64. </LinearLayout>
  65.  
  66. <?xml version="1.0" encoding="utf-8"?>
  67. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  68. android:layout_width="fill_parent"
  69. android:orientation="horizontal"
  70. android:layout_height="match_parent"
  71. android:weightSum="4">
  72. <ImageView
  73. android:id="@+id/deal_li_iv_icon_category"
  74. android:src="@android:drawable/ic_menu_gallery"
  75. android:layout_width="0dp"
  76. android:layout_height="100dp"
  77. android:layout_weight="1" />
  78. <RelativeLayout
  79. android:orientation="vertical"
  80. android:layout_width="0dp"
  81. android:layout_weight="3"
  82. android:layout_height="fill_parent">
  83. <TextView
  84. android:id="@+id/deal_li_tv_text"
  85. android:layout_toRightOf="@id/deal_li_iv_icon_category"
  86. android:text="text here"
  87. android:paddingTop="10dp"
  88. android:layout_width="wrap_content"
  89. android:layout_height="wrap_content" />
  90. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement