|
| 1 | +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | + android:layout_width="match_parent" |
| 3 | + android:layout_height="match_parent" |
| 4 | + android:fillViewport="true" |
| 5 | + android:padding="16dp"> |
| 6 | + |
| 7 | + <LinearLayout |
| 8 | + android:orientation="vertical" |
| 9 | + android:layout_width="match_parent" |
| 10 | + android:layout_height="wrap_content" |
| 11 | + android:gravity="center"> |
| 12 | + |
| 13 | + <!-- Note Name Label --> |
| 14 | + <TextView |
| 15 | + android:id="@+id/osm_note_upload_tv_name" |
| 16 | + android:layout_width="wrap_content" |
| 17 | + android:layout_height="wrap_content" |
| 18 | + android:textAppearance="?android:attr/textAppearanceMedium" |
| 19 | + android:text="@string/osm_note_label" /> |
| 20 | + |
| 21 | + <!-- Note text content--> |
| 22 | + <TextView |
| 23 | + android:id="@+id/wplist_item_name" |
| 24 | + android:layout_width="wrap_content" |
| 25 | + android:layout_height="wrap_content" |
| 26 | + android:text="{name}" |
| 27 | + android:textColor="@android:color/holo_green_light" |
| 28 | + android:textAppearance="?android:attr/textAppearanceLarge" /> |
| 29 | + |
| 30 | + <!-- Buttons Row --> |
| 31 | + <LinearLayout |
| 32 | + android:orientation="horizontal" |
| 33 | + android:layout_width="match_parent" |
| 34 | + android:layout_height="wrap_content" |
| 35 | + android:gravity="center" |
| 36 | + android:layout_marginTop="8dp"> |
| 37 | + <Button |
| 38 | + android:id="@+id/osm_note_upload_button_ok" |
| 39 | + android:layout_width="0dp" |
| 40 | + android:layout_height="wrap_content" |
| 41 | + android:layout_weight="1" |
| 42 | + android:text="@string/osm_note_upload_ok" /> |
| 43 | + |
| 44 | + <Button |
| 45 | + android:id="@+id/osm_note_upload_button_cancel" |
| 46 | + android:layout_width="0dp" |
| 47 | + android:layout_height="wrap_content" |
| 48 | + android:layout_marginEnd="8dp" |
| 49 | + android:layout_weight="1" |
| 50 | + android:text="@string/osm_note_upload_cancel" /> |
| 51 | + |
| 52 | + |
| 53 | + </LinearLayout> |
| 54 | + |
| 55 | + |
| 56 | + </LinearLayout> |
| 57 | +</ScrollView> |
0 commit comments