Guest User

Untitled

a guest
Oct 19th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.76 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:id="@+id/LinearLayout1"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent"
  6. android:orientation="vertical"
  7. android:scrollbars="vertical" >
  8.  
  9. <RelativeLayout
  10. android:id="@+id/RelativeLayout1"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:orientation="vertical" >
  14.  
  15. <RelativeLayout
  16. android:id="@+id/header"
  17. android:layout_width="fill_parent"
  18. android:layout_height="wrap_content"
  19. android:layout_alignParentLeft="true"
  20. android:layout_alignParentTop="true"
  21. android:background="@drawable/calendar_top" >
  22.  
  23. <RelativeLayout
  24. android:id="@+id/previous"
  25. android:layout_width="40dip"
  26. android:layout_height="30dip"
  27. android:layout_alignParentLeft="true" >
  28.  
  29. <ImageView
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:layout_centerInParent="true"
  33. android:background="@drawable/arrow_left" />
  34. </RelativeLayout>
  35.  
  36. <TextView
  37. android:id="@+id/title_calendar"
  38. android:layout_width="wrap_content"
  39. android:layout_height="wrap_content"
  40. android:layout_centerHorizontal="true"
  41. android:layout_marginTop="5dip"
  42. android:textColor="#000000"
  43. android:textSize="18dip"
  44. android:textStyle="bold" />
  45.  
  46. <RelativeLayout
  47. android:id="@+id/next"
  48. android:layout_width="40dip"
  49. android:layout_height="30dip"
  50. android:layout_alignParentRight="true" >
  51.  
  52. <ImageView
  53. android:layout_width="wrap_content"
  54. android:layout_height="wrap_content"
  55. android:layout_centerInParent="true"
  56. android:background="@drawable/arrow_right" />
  57. </RelativeLayout>
  58. </RelativeLayout>
  59.  
  60. <GridView
  61. android:id="@+id/gridview"
  62. android:layout_width="match_parent"
  63. android:layout_height="wrap_content"
  64. android:layout_alignParentLeft="true"
  65. android:layout_below="@+id/header"
  66. android:listSelector="@android:color/transparent"
  67. android:numColumns="7"
  68. android:stretchMode="columnWidth" >
  69. </GridView>
  70. </RelativeLayout>
  71.  
  72. <LinearLayout
  73. android:id="@+id/linLayout_all_ivents_in_this_day"
  74. android:layout_width="match_parent"
  75. android:layout_height="wrap_content"
  76. android:orientation="vertical" >
  77. </LinearLayout>
  78.  
  79. <ListView
  80. android:id="@+id/listView_all_ivents_in_this_day"
  81. android:layout_width="match_parent"
  82. android:layout_height="wrap_content"
  83. android:scrollbars="none" >
  84. </ListView>
  85.  
  86. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  87. xmlns:tools="http://schemas.android.com/tools"
  88. android:id="@+id/tab1"
  89. android:layout_width="fill_parent"
  90. android:layout_height="fill_parent"
  91. android:orientation="vertical"
  92. tools:context=".MainActivity$DummySectionFragment" >
  93.  
  94. <ScrollView
  95. android:id="@+id/scrollView_dialog_new_ivent_new"
  96. android:layout_width="match_parent"
  97. android:layout_height="fill_parent"
  98. android:fillViewport="true"
  99. android:scrollbars="vertical" >
  100.  
  101. <LinearLayout
  102. android:id="@+id/linLayout_add_calendar"
  103. android:layout_width="match_parent"
  104. android:layout_height="match_parent"
  105. android:orientation="vertical" >
  106.  
  107. </LinearLayout>
  108. </ScrollView>
  109.  
  110. <LinearLayout
  111. android:id="@+id/linLayout_add_calendar"
  112. android:layout_width="match_parent"
  113. android:layout_height="match_parent"
  114. android:orientation="vertical" >
  115.  
  116. </LinearLayout>
Add Comment
Please, Sign In to add comment