12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="350dp"
- android:layout_height="144dp"
- android:id="@+id/yyrh_auto_login_dialog"
- android:background="@drawable/yyrh_radius_white_1dp"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="20dp"
- android:layout_gravity="center_horizontal">
-
- <ImageView
- android:layout_width="26dp"
- android:layout_height="26dp"
- android:id="@+id/yyrh_autoLogin_icon"
- android:background="@mipmap/yyrh_loading"/>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/yyrh_autoLogin_text"
- android:layout_marginLeft="10dp"
- android:textSize="14dp"
- android:layout_gravity="center_vertical"
- android:text="@string/yyrh_autologin_text"/>
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:layout_marginTop="20dp">
- <Button
- android:id="@+id/yyrh_autoLogin_cancel_Btn"
- android:layout_width="165dp"
- android:layout_height="40dp"
- android:background="@drawable/yyrh_radius_main_color_bg"
- android:text="@string/yyrh_autologin_cancel"
- android:textSize="16dp"
- android:textColor="@color/yyrh_white"></Button>
- </LinearLayout>
- </LinearLayout>
|