123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="@dimen/dialog_common_width"
- android:layout_height="@dimen/dialog_common_height"
- android:layout_gravity="center"
- android:background="@drawable/shape_dialog">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:gravity="center"
- android:orientation="vertical">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:maxLines="1"
- android:textColor="@color/grey_text_color"
- android:text="@string/account_risk"
- android:textSize="10sp"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:layout_marginTop="5dp"
- android:gravity="center"
- android:orientation="horizontal">
- <Button
- android:id="@id/continue_login_btn"
- android:layout_width="@dimen/btn_bind_phone_width"
- android:layout_height="match_parent"
- android:background="@drawable/selector_rounded_btn_blue"
- android:gravity="center"
- android:text="@string/continue_login"
- android:textColor="@color/white"
- android:textSize="10sp"/>
- <Button
- android:id="@id/bind_phone_btn"
- android:layout_width="@dimen/btn_bind_phone_width"
- android:layout_height="@dimen/btn_bind_phone_height"
- android:layout_marginLeft="15dp"
- android:background="@drawable/selector_rounded_btn_deep_grren"
- android:gravity="center"
- android:text="@string/bind_phone"
- android:textColor="@color/white"
- android:textSize="10sp"/>
- </LinearLayout>
- </LinearLayout>
- <LinearLayout
- android:id="@id/no_remind_again_ll"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:paddingBottom="5dp"
- android:paddingLeft="5dp"
- android:gravity="center_vertical"
- android:orientation="horizontal">
- <ImageView
- android:id="@id/no_remind_again_iv"
- android:layout_width="7dp"
- android:layout_height="7dp"
- android:src="@drawable/iv_unselected"/>
- <TextView
- android:textColor="@color/grey_text_color"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="2dp"
- android:text="@string/no_remind_again"
- android:textSize="8sp"/>
- </LinearLayout>
- </RelativeLayout>
|