OLD | NEW |
---|---|
(Empty) | |
1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
2 xmlns:app="http://schemas.android.com/apk/res-auto" | |
Ian Wen
2016/03/16 01:35:30
You miss copyright info in this file.
BigBossZhiling
2016/03/18 00:59:07
Done.
| |
3 xmlns:tools="http://schemas.android.com/tools" | |
4 android:layout_width="match_parent" | |
5 android:layout_height="match_parent" | |
6 android:orientation="vertical" | |
7 android:id="@+id/actiona_bar_item" | |
8 tools:context=".advanced_ui_setting"> | |
9 | |
10 <LinearLayout | |
11 android:layout_width="fill_parent" | |
12 android:orientation="horizontal" | |
13 android:layout_height="@dimen/view_height"> | |
14 <TextView | |
15 android:layout_width="wrap_content" | |
16 android:text='Description ' | |
17 android:textSize="@dimen/abc_text_size_medium_material" | |
18 android:layout_height="@dimen/view_height" /> | |
19 <EditText | |
20 android:id="@+id/item_description" | |
21 android:hint="Description for the action." | |
22 android:layout_width="wrap_content" | |
23 android:textSize="@dimen/abc_text_size_medium_material" | |
24 android:layout_height="wrap_content" | |
25 android:inputType="text" /> | |
26 <LinearLayout | |
27 android:layout_width="match_parent" | |
28 android:layout_height="wrap_content" | |
29 android:gravity="right"> | |
30 <Button | |
31 android:id="@+id/select_file" | |
32 android:layout_width="30dp" | |
33 android:layout_height="45dp" | |
34 android:background="@android:drawable/ic_menu_search" /> | |
35 | |
36 <Button | |
37 android:id="@+id/item_delete" | |
38 android:layout_width="30dp" | |
39 android:layout_height="45dp" | |
40 android:background="@android:drawable/ic_menu_delete" /> | |
41 </LinearLayout> | |
42 </LinearLayout> | |
43 | |
44 <LinearLayout | |
45 android:layout_width="fill_parent" | |
46 android:orientation="horizontal" | |
47 android:layout_height="@dimen/view_height"> | |
48 <TextView | |
49 android:layout_width="wrap_content" | |
50 android:text="Intent " | |
51 android:textSize="@dimen/abc_text_size_medium_material" | |
52 android:layout_height="@dimen/view_height" /> | |
53 <Spinner | |
54 android:paddingLeft="@dimen/spinner_padding_left" | |
55 android:layout_width="match_parent" | |
56 android:layout_height="wrap_content" | |
57 android:id="@+id/item_intent" /> | |
58 </LinearLayout> | |
59 | |
60 <ImageView | |
61 android:paddingTop="@dimen/view_vertical_margin" | |
62 android:id="@+id/item_image" | |
63 android:layout_gravity="center" | |
64 android:layout_width="100sp" | |
65 android:layout_height="100sp" /> | |
66 </LinearLayout> | |
OLD | NEW |