Advertisement
Guest User

Untitled

a guest
Mar 30th, 2015
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. xmlns:MeoBox="http://schemas.android.com/apk/res-auto"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="#00000000">
  8.  
  9. <com.meobox.tools.MeoTextView
  10. android:id="@+id/users_frame_name"
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. android:layout_marginBottom="-70px"
  14. MeoBox:typeface="TitilliumWeb-SemiBold.ttf"
  15. android:alpha="0.2"
  16. android:gravity="bottom"
  17. android:includeFontPadding="false"
  18. android:textColor="#FFFFFF"
  19. android:layout_marginLeft="50px"
  20. android:textSize="180px" />
  21.  
  22. <LinearLayout
  23. android:layout_width="match_parent"
  24. android:layout_height="match_parent"
  25. android:orientation="horizontal" >
  26.  
  27. <Space
  28. android:layout_width="120px"
  29. android:layout_height="match_parent" />
  30.  
  31. <GridView
  32. android:id="@+id/users_gridview"
  33. android:layout_width="0dp"
  34. android:layout_height="match_parent"
  35. android:layout_gravity="center"
  36. android:layout_weight="15"
  37. android:paddingTop="57px"
  38. android:paddingBottom="57px"
  39. android:clipToPadding="false"
  40. android:fadingEdge="vertical"
  41. android:fadingEdgeLength="50px"
  42. android:numColumns="4"
  43. android:requiresFadingEdge="vertical"
  44. android:scrollbars="none"
  45. android:listSelector="#00000000"
  46. tools:listitem="@layout/grid_element_img_txt"/>
  47.  
  48. <Space
  49. android:layout_width="0dp"
  50. android:layout_height="match_parent"
  51. android:layout_weight="0.5" />
  52.  
  53. <ImageButton
  54. android:id="@+id/users_arrow_down"
  55. android:layout_width="0dp"
  56. android:layout_height="match_parent"
  57. android:layout_weight="1.5"
  58. android:scaleType="fitCenter"
  59. android:src="@drawable/item_arrow_down"
  60. android:background="@null"
  61. android:nextFocusLeft="@+id/users_gridview"
  62. android:nextFocusRight="@+id/users_arrow_up"/>
  63.  
  64. <ImageButton
  65. android:id="@+id/users_arrow_up"
  66. android:layout_width="0dp"
  67. android:layout_height="match_parent"
  68. android:layout_weight="1.5"
  69. android:scaleType="fitCenter"
  70. android:src="@drawable/item_arrow_up"
  71. android:background="@null"
  72. android:nextFocusLeft="@+id/users_arrow_down"/>
  73.  
  74. <Space
  75. android:layout_width="120px"
  76. android:layout_height="match_parent" />
  77.  
  78. </LinearLayout>
  79.  
  80. </FrameLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement