OLD | NEW |
(Empty) | |
| 1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 xmlns:app="http://schemas.android.com/apk/res-auto" |
| 3 xmlns:tools="http://schemas.android.com/tools" |
| 4 android:layout_width="wrap_content" |
| 5 android:layout_height="wrap_content" |
| 6 android:orientation="vertical" |
| 7 android:id="@+id/actiona_bar_item" |
| 8 tools:context=".advanced_ui_setting"> |
| 9 |
| 10 <LinearLayout |
| 11 android:layout_width="match_parent" |
| 12 android:paddingTop="@dimen/view_vertical_margin" |
| 13 android:orientation="horizontal" |
| 14 |
| 15 android:layout_height="@dimen/view_height"> |
| 16 <TextView |
| 17 android:id="@+id/item_description" |
| 18 android:layout_width="wrap_content" |
| 19 android:textSize="@dimen/abc_text_size_medium_material" |
| 20 android:layout_height="@dimen/view_height" /> |
| 21 <LinearLayout |
| 22 android:orientation="horizontal" |
| 23 android:layout_width="fill_parent" |
| 24 android:layout_height="wrap_content" |
| 25 android:gravity="right" > |
| 26 <Button |
| 27 android:id="@+id/item_delete" |
| 28 android:layout_width="30sp" |
| 29 android:layout_height="wrap_content" |
| 30 android:background="@android:drawable/ic_menu_delete" /> |
| 31 </LinearLayout> |
| 32 </LinearLayout> |
| 33 |
| 34 <TextView |
| 35 android:id="@+id/item_intent" |
| 36 android:layout_width="match_parent" |
| 37 android:paddingTop="@dimen/view_vertical_margin" |
| 38 android:textSize="@dimen/abc_text_size_medium_material" |
| 39 android:layout_height="@dimen/view_height" /> |
| 40 |
| 41 <TextView |
| 42 android:id="@+id/item_image_title" |
| 43 android:layout_width="match_parent" |
| 44 android:paddingTop="@dimen/view_vertical_margin" |
| 45 android:textSize="@dimen/abc_text_size_medium_material" |
| 46 android:layout_height="@dimen/view_height" /> |
| 47 |
| 48 <ImageView |
| 49 android:id="@+id/item_image" |
| 50 android:layout_gravity="center" |
| 51 android:layout_width="100sp" |
| 52 android:layout_height="100sp" /> |
| 53 </LinearLayout> |
OLD | NEW |