[17423] | 1 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
---|
| 2 | android:layout_width="match_parent"
|
---|
| 3 | android:layout_height="50sp" >
|
---|
| 4 |
|
---|
| 5 | <Button
|
---|
| 6 | android:id="@+id/play_tab"
|
---|
| 7 | android:layout_width="50sp"
|
---|
| 8 | android:layout_height="50sp"
|
---|
| 9 | android:layout_marginTop="3sp"
|
---|
| 10 | android:layout_marginLeft="3sp"
|
---|
| 11 | android:background="@drawable/ic_home" />
|
---|
| 12 |
|
---|
| 13 | <TextView
|
---|
| 14 | android:layout_width="wrap_content"
|
---|
| 15 | android:layout_height="wrap_content"
|
---|
| 16 | android:layout_marginRight="20sp" />
|
---|
| 17 |
|
---|
| 18 | <HorizontalScrollView
|
---|
| 19 | android:layout_width="match_parent"
|
---|
| 20 | android:layout_height="match_parent"
|
---|
| 21 | android:scrollbars="none" >
|
---|
| 22 |
|
---|
| 23 | <LinearLayout
|
---|
| 24 | android:layout_width="wrap_content"
|
---|
| 25 | android:layout_height="50sp" >
|
---|
| 26 |
|
---|
| 27 | <Button
|
---|
| 28 | android:id="@+id/gallery_tab"
|
---|
| 29 | android:layout_width="100sp"
|
---|
| 30 | android:layout_height="50sp"
|
---|
| 31 | android:background="@drawable/tab_button"
|
---|
| 32 | android:gravity="center"
|
---|
| 33 | android:shadowColor="#ffffff"
|
---|
| 34 | android:shadowDx="0"
|
---|
| 35 | android:shadowDy="0"
|
---|
| 36 | android:shadowRadius="8"
|
---|
| 37 | android:text="Gallery"
|
---|
| 38 | android:textAlignment="center"
|
---|
| 39 | android:textColor="#ffffff"
|
---|
| 40 | android:textSize="20sp" />
|
---|
| 41 |
|
---|
| 42 | <TextView
|
---|
| 43 | android:layout_width="10sp"
|
---|
| 44 | android:layout_height="50sp"
|
---|
| 45 | android:gravity="center"
|
---|
| 46 | android:shadowColor="#ffffff"
|
---|
| 47 | android:shadowDx="0"
|
---|
| 48 | android:shadowDy="0"
|
---|
| 49 | android:shadowRadius="8"
|
---|
| 50 | android:text="|"
|
---|
| 51 | android:textAlignment="center"
|
---|
| 52 | android:textColor="#ffffff"
|
---|
| 53 | android:textSize="15sp" />
|
---|
| 54 |
|
---|
| 55 | <Button
|
---|
| 56 | android:id="@+id/video_tab"
|
---|
| 57 | android:layout_width="100sp"
|
---|
| 58 | android:layout_height="50sp"
|
---|
| 59 | android:background="@drawable/tab_button"
|
---|
| 60 | android:gravity="center"
|
---|
| 61 | android:shadowColor="#ffffff"
|
---|
| 62 | android:shadowDx="0"
|
---|
| 63 | android:shadowDy="0"
|
---|
| 64 | android:shadowRadius="8"
|
---|
| 65 | android:text="Video"
|
---|
| 66 | android:textAlignment="center"
|
---|
| 67 | android:textColor="#ffffff"
|
---|
| 68 | android:textSize="20sp" />
|
---|
| 69 |
|
---|
| 70 | <TextView
|
---|
| 71 | android:layout_width="10sp"
|
---|
| 72 | android:layout_height="50sp"
|
---|
| 73 | android:gravity="center"
|
---|
| 74 | android:shadowColor="#ffffff"
|
---|
| 75 | android:shadowDx="0"
|
---|
| 76 | android:shadowDy="0"
|
---|
| 77 | android:shadowRadius="8"
|
---|
| 78 | android:text="|"
|
---|
| 79 | android:textAlignment="center"
|
---|
| 80 | android:textColor="#ffffff"
|
---|
| 81 | android:textSize="15sp" />
|
---|
| 82 |
|
---|
| 83 | <Button
|
---|
| 84 | android:id="@+id/team_tab"
|
---|
| 85 | android:layout_width="100sp"
|
---|
| 86 | android:layout_height="50sp"
|
---|
| 87 | android:background="@drawable/tab_button"
|
---|
| 88 | android:gravity="center"
|
---|
| 89 | android:shadowColor="#ffffff"
|
---|
| 90 | android:shadowDx="0"
|
---|
| 91 | android:shadowDy="0"
|
---|
| 92 | android:shadowRadius="8"
|
---|
| 93 | android:text="Team"
|
---|
| 94 | android:textAlignment="center"
|
---|
| 95 | android:textColor="#ffffff"
|
---|
| 96 | android:textSize="20sp" />
|
---|
| 97 |
|
---|
| 98 | <TextView
|
---|
| 99 | android:layout_width="10sp"
|
---|
| 100 | android:layout_height="50sp"
|
---|
| 101 | android:gravity="center"
|
---|
| 102 | android:shadowColor="#ffffff"
|
---|
| 103 | android:shadowDx="0"
|
---|
| 104 | android:shadowDy="0"
|
---|
| 105 | android:shadowRadius="8"
|
---|
| 106 | android:text="|"
|
---|
| 107 | android:textAlignment="center"
|
---|
| 108 | android:textColor="#ffffff"
|
---|
| 109 | android:textSize="15sp" />
|
---|
| 110 |
|
---|
| 111 | <Button
|
---|
| 112 | android:id="@+id/about_tab"
|
---|
| 113 | android:layout_width="100sp"
|
---|
| 114 | android:layout_height="50sp"
|
---|
| 115 | android:background="@drawable/tab_button"
|
---|
| 116 | android:gravity="center"
|
---|
| 117 | android:shadowColor="#ffffff"
|
---|
| 118 | android:shadowDx="0"
|
---|
| 119 | android:shadowDy="0"
|
---|
| 120 | android:shadowRadius="8"
|
---|
| 121 | android:text="About"
|
---|
| 122 | android:textAlignment="center"
|
---|
| 123 | android:textColor="#ffffff"
|
---|
| 124 | android:textSize="20sp" />
|
---|
| 125 |
|
---|
| 126 | <!-- <Button -->
|
---|
| 127 | <!-- android:id="@+id/play_tab" -->
|
---|
| 128 | <!-- android:layout_width="100sp" -->
|
---|
| 129 | <!-- android:layout_height="match_parent" -->
|
---|
| 130 | <!-- android:layout_marginBottom="-6sp" -->
|
---|
| 131 | <!-- android:background="@drawable/tab_button" -->
|
---|
| 132 | <!-- android:text="Start" -->
|
---|
| 133 | <!-- android:textColor="@color/tab_color" /> -->
|
---|
| 134 |
|
---|
| 135 |
|
---|
| 136 | <!-- <Button -->
|
---|
| 137 | <!-- android:id="@+id/gallery_tab" -->
|
---|
| 138 | <!-- android:layout_width="100sp" -->
|
---|
| 139 | <!-- android:layout_height="match_parent" -->
|
---|
| 140 | <!-- android:layout_marginBottom="-6sp" -->
|
---|
| 141 | <!-- android:background="@drawable/tab_button" -->
|
---|
| 142 | <!-- android:text="Gallery" -->
|
---|
| 143 | <!-- android:textColor="@color/tab_color" /> -->
|
---|
| 144 |
|
---|
| 145 |
|
---|
| 146 | <!-- <Button -->
|
---|
| 147 | <!-- android:id="@+id/video_tab" -->
|
---|
| 148 | <!-- android:layout_width="100sp" -->
|
---|
| 149 | <!-- android:layout_height="match_parent" -->
|
---|
| 150 | <!-- android:layout_marginBottom="-6sp" -->
|
---|
| 151 | <!-- android:background="@drawable/tab_button" -->
|
---|
| 152 | <!-- android:text="Video" -->
|
---|
| 153 | <!-- android:textColor="@color/tab_color" /> -->
|
---|
| 154 |
|
---|
| 155 |
|
---|
| 156 | <!-- <Button -->
|
---|
| 157 | <!-- android:id="@+id/team_tab" -->
|
---|
| 158 | <!-- android:layout_width="100sp" -->
|
---|
| 159 | <!-- android:layout_height="match_parent" -->
|
---|
| 160 | <!-- android:layout_marginBottom="-6sp" -->
|
---|
| 161 | <!-- android:background="@drawable/tab_button" -->
|
---|
| 162 | <!-- android:text="Team" -->
|
---|
| 163 | <!-- android:textColor="@color/tab_color" /> -->
|
---|
| 164 |
|
---|
| 165 |
|
---|
| 166 | <!-- <Button -->
|
---|
| 167 | <!-- android:id="@+id/about_tab" -->
|
---|
| 168 | <!-- android:layout_width="100sp" -->
|
---|
| 169 | <!-- android:layout_height="match_parent" -->
|
---|
| 170 | <!-- android:layout_marginBottom="-6sp" -->
|
---|
| 171 | <!-- android:background="@drawable/tab_button" -->
|
---|
| 172 | <!-- android:text="About" -->
|
---|
| 173 | <!-- android:textColor="@color/tab_color" /> -->
|
---|
| 174 | </LinearLayout>
|
---|
| 175 | </HorizontalScrollView>
|
---|
| 176 |
|
---|
| 177 | </LinearLayout> |
---|