123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?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.sheishuo.app.common.views.BaseToolbar
- android:id="@+id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="@dimen/action_bar_height"
- app:left_text="返回"/>
- </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="horizontal"
- android:visibility="gone">
- <Button
- android:id="@+id/mine_about_webview_agree"
- android:layout_weight="1"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:text="同意"
- android:textColor="@color/white"
- android:background="@drawable/btn1_selector"
- android:layout_margin="8dp"/>
- <Button
- android:id="@+id/mine_about_webview_reject"
- android:layout_weight="1"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:text="拒绝"
- android:textColor="@color/white"
- android:background="@drawable/btn1_selector"
- android:layout_margin="8dp"/>
- </LinearLayout>
- </LinearLayout>
|