|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | + xmlns:tools="http://schemas.android.com/tools" |
| 4 | + android:layout_width="fill_parent" |
| 5 | + android:layout_height="wrap_content" |
| 6 | + android:orientation="vertical" |
| 7 | + android:paddingLeft="16dp" |
| 8 | + android:paddingRight="16dp"> |
| 9 | + |
| 10 | + <TextView |
| 11 | + android:id="@+id/domainAppAssociationTitleText" |
| 12 | + style="@android:style/Widget.DeviceDefault.Light.TextView" |
| 13 | + android:layout_width="match_parent" |
| 14 | + android:layout_height="wrap_content" |
| 15 | + android:layout_marginTop="100dp" |
| 16 | + android:gravity="center" |
| 17 | + android:padding="10dp" |
| 18 | + android:text="@string/domainAppAssociationTitle" |
| 19 | + android:textSize="25sp" |
| 20 | + android:textStyle="bold" /> |
| 21 | + |
| 22 | + <TextView |
| 23 | + android:id="@+id/domainAppAssociationMessageText" |
| 24 | + android:layout_width="wrap_content" |
| 25 | + android:layout_height="wrap_content" |
| 26 | + android:layout_below="@+id/domainAppAssociationTitleText" |
| 27 | + android:layout_marginTop="10dp" |
| 28 | + android:gravity="center" |
| 29 | + android:padding="20dp" |
| 30 | + android:text="@string/domainAppAssociationMessage" |
| 31 | + android:textSize="18sp" /> |
| 32 | + |
| 33 | + <LinearLayout |
| 34 | + android:id="@+id/domainAppAssociationButtons" |
| 35 | + android:layout_width="match_parent" |
| 36 | + android:layout_height="wrap_content" |
| 37 | + android:layout_alignParentEnd="true" |
| 38 | + android:layout_alignParentBottom="true" |
| 39 | + android:paddingLeft="20dp" |
| 40 | + android:paddingRight="20dp" |
| 41 | + android:paddingBottom="20dp"> |
| 42 | + |
| 43 | + <Button |
| 44 | + android:id="@+id/domainAppAssociationNegativeButton" |
| 45 | + style="@style/borderlessButton" |
| 46 | + android:onClick="onClickNegative" |
| 47 | + android:text="@string/domainAppAssociationRequestDenyButton" |
| 48 | + tools:ignore="OnClick" |
| 49 | + android:layout_marginTop="10dp"/> |
| 50 | + |
| 51 | + <View |
| 52 | + android:layout_width="0dp" |
| 53 | + android:layout_height="0dp" |
| 54 | + android:layout_weight="1" /> |
| 55 | + |
| 56 | + <Button |
| 57 | + android:id="@+id/domainAppAssociationOkButton" |
| 58 | + style="@style/standardButton" |
| 59 | + android:layout_width="137dp" |
| 60 | + android:background="@android:color/holo_blue_dark" |
| 61 | + android:onClick="onClickOk" |
| 62 | + android:text="@string/domainAppAssociationRequestOkButton" |
| 63 | + android:textColor="#ffffff" |
| 64 | + tools:ignore="OnClick" /> |
| 65 | + |
| 66 | + </LinearLayout> |
| 67 | + |
| 68 | +</RelativeLayout> |
0 commit comments