12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <android.support.design.widget.AppBarLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <com.shuishuo.app.common.views.BaseToolbar
- android:id="@+id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="@dimen/action_bar_height"
- style="@style/fullToolbarStyle"/>
- </android.support.design.widget.AppBarLayout>
- <WebView
- android:id="@+id/mine_about_webview"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="9"/>
- <LinearLayout
- android:id="@+id/mine_about_webview_agreement_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:visibility="gone">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center"
- android:layout_marginTop="15dp"
- android:orientation="horizontal">
- <RadioButton
- android:id="@+id/agree_radio"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:checked="true"
- android:text="我已阅读并同意以上规定"
- android:textColor="@color/color_grey_666666"
- android:textColorLink="@color/color_green_00ae8c"
- app:buttonTint="@color/color_green_00ae8c" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <Button
- android:id="@+id/mine_about_webview_reject"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_margin="8dp"
- android:layout_weight="1"
- android:background="@drawable/btn1_selector"
- android:text="取消"
- android:textColor="@color/white" />
- <Button
- android:id="@+id/mine_about_webview_agree"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_margin="8dp"
- android:layout_weight="1"
- android:background="@drawable/btn1_selector"
- android:text="实名认证"
- android:textColor="@color/white" />
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
|