|
7 | 7 | android:id="@+id/video_layout" |
8 | 8 | android:orientation="vertical" |
9 | 9 | > |
10 | | - <LinearLayout |
| 10 | + |
| 11 | + <TextView |
| 12 | + android:id="@+id/simple_video_title_label" |
| 13 | + android:layout_width="wrap_content" |
| 14 | + android:layout_height="wrap_content" |
| 15 | + android:text="@string/title" |
| 16 | + /> |
| 17 | + <EditText |
| 18 | + android:id="@+id/simple_video_title_edit" |
11 | 19 | android:layout_width="match_parent" |
12 | 20 | android:layout_height="wrap_content" |
13 | | - android:orientation="vertical" |
14 | | - android:background="@color/medium_gray" |
15 | | - > |
16 | | - <LinearLayout |
17 | | - android:layout_width="match_parent" |
18 | | - android:layout_height="wrap_content" |
19 | | - android:orientation="vertical" |
20 | | - android:background="@color/medium_gray" |
21 | | - > |
22 | | - <TextView |
23 | | - android:id="@+id/simple_video_title_label" |
24 | | - android:layout_width="wrap_content" |
25 | | - android:layout_height="wrap_content" |
26 | | - android:text="@string/title" |
27 | | - /> |
28 | | - <EditText |
29 | | - android:id="@+id/simple_video_title_edit" |
30 | | - android:height="@dimen/text_edit_height" |
31 | | - android:layout_weight="1" |
32 | | - android:layout_width="match_parent" |
33 | | - android:layout_height="wrap_content" |
34 | | - android:lines="1" |
35 | | - android:singleLine="true" |
36 | | - /> |
37 | | - </LinearLayout> |
38 | | - <LinearLayout |
39 | | - android:layout_width="match_parent" |
40 | | - android:layout_height="wrap_content" |
41 | | - android:orientation="vertical" |
42 | | - android:background="@color/medium_gray" |
43 | | - > |
44 | | - <TextView |
45 | | - android:id="@+id/simple_video_description_label" |
46 | | - android:layout_width="wrap_content" |
47 | | - android:layout_height="wrap_content" |
48 | | - android:text="@string/description" |
49 | | - /> |
50 | | - <EditText |
51 | | - android:id="@+id/simple_video_description_edit" |
52 | | - android:height="@dimen/text_edit_height" |
53 | | - android:layout_weight="1" |
54 | | - android:layout_width="match_parent" |
55 | | - android:layout_height="wrap_content" |
56 | | - android:lines="1" |
57 | | - android:singleLine="true" |
58 | | - /> |
59 | | - </LinearLayout> |
60 | | - <LinearLayout |
61 | | - android:layout_width="match_parent" |
62 | | - android:layout_height="wrap_content" |
63 | | - android:orientation="vertical" |
64 | | - android:background="@color/medium_gray" |
65 | | - > |
66 | | - <TextView |
67 | | - android:id="@+id/simple_video_media_id_label" |
68 | | - android:layout_width="wrap_content" |
69 | | - android:layout_height="wrap_content" |
70 | | - android:text="@string/media_id" |
71 | | - /> |
72 | | - <EditText |
73 | | - android:id="@+id/simple_video_media_id_edit" |
74 | | - android:height="@dimen/text_edit_height" |
75 | | - android:layout_weight="1" |
76 | | - android:layout_width="match_parent" |
77 | | - android:layout_height="wrap_content" |
78 | | - android:lines="1" |
79 | | - android:singleLine="true" |
80 | | - /> |
81 | | - </LinearLayout> |
82 | | - <Button |
83 | | - android:id="@+id/simple_video_insert_button" |
84 | | - android:layout_width="wrap_content" |
85 | | - android:layout_height="wrap_content" |
86 | | - android:text="@string/simple_insert_text" |
87 | | - /> |
88 | | - </LinearLayout> |
| 21 | + android:singleLine="true" |
| 22 | + /> |
| 23 | + |
| 24 | + <TextView |
| 25 | + android:id="@+id/simple_video_description_label" |
| 26 | + android:layout_width="wrap_content" |
| 27 | + android:layout_height="wrap_content" |
| 28 | + android:text="@string/description" |
| 29 | + /> |
| 30 | + <EditText |
| 31 | + android:id="@+id/simple_video_description_edit" |
| 32 | + android:height="@dimen/text_edit_height" |
| 33 | + android:layout_width="fill_parent" |
| 34 | + android:layout_height="wrap_content" |
| 35 | + android:singleLine="true" |
| 36 | + /> |
| 37 | + |
| 38 | + <TextView |
| 39 | + android:id="@+id/simple_video_media_id_label" |
| 40 | + android:layout_width="wrap_content" |
| 41 | + android:layout_height="wrap_content" |
| 42 | + android:text="@string/media_id" |
| 43 | + /> |
| 44 | + <EditText |
| 45 | + android:id="@+id/simple_video_media_id_edit" |
| 46 | + android:height="@dimen/text_edit_height" |
| 47 | + android:layout_width="match_parent" |
| 48 | + android:layout_height="wrap_content" |
| 49 | + android:singleLine="true" |
| 50 | + /> |
| 51 | + <Button |
| 52 | + android:id="@+id/simple_video_insert_button" |
| 53 | + android:layout_width="wrap_content" |
| 54 | + android:layout_height="wrap_content" |
| 55 | + android:text="@string/simple_insert_text" |
| 56 | + /> |
89 | 57 |
|
90 | 58 | <!--The list of video data. --> |
91 | 59 | <ListView |
|
0 commit comments