|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | + android:layout_width="match_parent" |
| 4 | + android:layout_height="wrap_content"> |
| 5 | + |
| 6 | + <LinearLayout |
| 7 | + android:orientation="vertical" |
| 8 | + android:layout_width="match_parent" |
| 9 | + android:layout_height="wrap_content" |
| 10 | + android:paddingVertical="32dp" |
| 11 | + android:paddingHorizontal="24dp"> |
| 12 | + |
| 13 | + <ImageView |
| 14 | + android:layout_width="match_parent" |
| 15 | + android:layout_height="wrap_content" |
| 16 | + android:src="@drawable/baseline_location_on_green_700_48dp" |
| 17 | + android:contentDescription="@string/bg_location_disclosure_title" /> |
| 18 | + |
| 19 | + <TextView |
| 20 | + android:id="@+id/bg_location_disclosure_title" |
| 21 | + android:layout_width="match_parent" |
| 22 | + android:layout_height="wrap_content" |
| 23 | + android:layout_marginTop="24dp" |
| 24 | + android:text="@string/bg_location_disclosure_title" |
| 25 | + android:textAlignment="center" |
| 26 | + android:textSize="20sp" |
| 27 | + android:textStyle="bold" /> |
| 28 | + |
| 29 | + <TextView |
| 30 | + android:id="@+id/bg_location_disclosure_body" |
| 31 | + android:layout_width="match_parent" |
| 32 | + android:layout_height="wrap_content" |
| 33 | + android:layout_marginTop="16dp" |
| 34 | + android:text="@string/bg_location_disclosure_body" |
| 35 | + android:textIsSelectable="true" |
| 36 | + android:linksClickable="true" |
| 37 | + android:autoLink="web" /> |
| 38 | + |
| 39 | + <TextView |
| 40 | + android:id="@+id/bg_location_disclosure_revoke_hint" |
| 41 | + android:layout_width="match_parent" |
| 42 | + android:layout_height="wrap_content" |
| 43 | + android:layout_marginTop="16dp" |
| 44 | + android:text="@string/bg_location_disclosure_revoke_hint" |
| 45 | + android:textStyle="italic" /> |
| 46 | + </LinearLayout> |
| 47 | +</ScrollView> |
0 commit comments