123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="360dp"
- android:layout_height="280dp"
- android:background="@drawable/hnyy_color_white_70"
- android:orientation="vertical"
- android:id="@+id/ll_private_policy"
- >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="7"
- android:layout_marginTop="10dp"
- android:layout_marginLeft="2dp"
- android:layout_marginRight="2dp"
- >
- <WebView
- android:id="@+id/wb_user_info"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center"
- android:background="@color/hnyy_transparent"
- />
- <ImageView
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:layout_centerInParent="true"
- android:id="@+id/hnyy_loading"
- android:background="@mipmap/hnyy_loading"/>
- </RelativeLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="3"
- android:orientation="horizontal"
- >
- <View
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- />
- <Button
- android:id="@+id/btn_disagree"
- android:layout_width="0dp"
- android:layout_height="30dp"
- android:layout_weight="2"
- android:layout_gravity="center"
- android:text="@string/hnyy_disagreement"
- android:textColor="@color/hnyy_text_cyan_color"
- android:background="@drawable/hnyy_btn_exit_bg"/>
- <View
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- />
- <View
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- />
- <Button
- android:id="@+id/btn_agree"
- android:layout_width="0dp"
- android:layout_height="30dp"
- android:layout_weight="2"
- android:layout_gravity="center"
- android:background="@drawable/hnyy_login_button_style"
- android:textColor="@color/hnyy_white"
- android:text="@string/hnyy_agreement"/>
- <View
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- />
- </LinearLayout>
- </LinearLayout>
|