|
@@ -10,59 +10,60 @@
|
|
|
android:id="@+id/mTitle"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginTop="25dp"
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
+ android:layout_marginStart="5dp"
|
|
|
+ android:layout_marginEnd="5dp"
|
|
|
android:textColor="@color/white"
|
|
|
- android:textSize="15sp"
|
|
|
- android:textFontWeight="700"
|
|
|
- android:gravity="center"/>
|
|
|
+ android:textSize="20sp"
|
|
|
+ android:textStyle="bold"
|
|
|
+ />
|
|
|
|
|
|
<TextView
|
|
|
android:id="@+id/mContent"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginTop="55dp"
|
|
|
+ android:layout_below="@+id/mTitle"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:layout_marginStart="5dp"
|
|
|
+ android:layout_marginEnd="5dp"
|
|
|
android:textColor="@color/white"
|
|
|
- android:textSize="11sp"
|
|
|
+ android:textSize="17sp"
|
|
|
android:textFontWeight="400"
|
|
|
- android:gravity="center"/>
|
|
|
+ />
|
|
|
|
|
|
- <RelativeLayout
|
|
|
+ <LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="28dp"
|
|
|
- android:layout_marginBottom="25dp"
|
|
|
+ android:layout_height="37dp"
|
|
|
+ android:layout_marginStart="5dp"
|
|
|
+ android:layout_marginEnd="5dp"
|
|
|
+ android:layout_marginBottom="5dp"
|
|
|
android:layout_alignParentBottom="true"
|
|
|
+ android:orientation="horizontal"
|
|
|
>
|
|
|
|
|
|
<Button
|
|
|
android:id="@+id/mNoBtn"
|
|
|
- android:layout_width="85dp"
|
|
|
+ android:layout_width="0dp"
|
|
|
android:layout_height="match_parent"
|
|
|
- android:layout_alignParentStart="true"
|
|
|
- android:layout_centerVertical="true"
|
|
|
+ android:layout_weight="1"
|
|
|
android:text="@string/button_cancel"
|
|
|
- android:textSize="12sp"
|
|
|
- android:textFontWeight="700"
|
|
|
- android:fontFamily="Roboto"
|
|
|
- android:paddingRight="15dp"
|
|
|
- android:backgroundTint="@color/xp_red"
|
|
|
- style="@style/xp_style_button_right"
|
|
|
+ android:textSize="17sp"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:background="@drawable/bg_gray_button"
|
|
|
/>
|
|
|
|
|
|
<Button
|
|
|
android:id="@+id/mYesBtn"
|
|
|
- android:layout_width="85dp"
|
|
|
+ android:layout_width="0dp"
|
|
|
android:layout_height="match_parent"
|
|
|
- android:layout_alignParentEnd="true"
|
|
|
- android:layout_centerVertical="true"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:layout_marginStart="5dp"
|
|
|
android:text="@string/button_yes"
|
|
|
- android:textSize="12sp"
|
|
|
- android:textFontWeight="700"
|
|
|
- android:fontFamily="Roboto"
|
|
|
- android:paddingLeft="15dp"
|
|
|
- android:backgroundTint="@color/xp_green"
|
|
|
- style="@style/xp_style_button_left"
|
|
|
+ android:textSize="17sp"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:background="@drawable/bg_gray_button"
|
|
|
/>
|
|
|
|
|
|
- </RelativeLayout>
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
</RelativeLayout>
|