yd_activity_protocol_detail.xml 1.4 KB
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/ll_protocol_detail_root"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white"
    android:orientation="vertical">

    <RelativeLayout
        android:id="@+id/yd_navigation_rl"
        android:layout_width="match_parent"
        android:layout_height="50dp">

        <ImageView
            android:id="@+id/yd_navigation_back"
            android:layout_width="25dp"
            android:layout_height="25dp"
            android:layout_centerVertical="true"
            android:layout_margin="10dp"
            android:contentDescription="@string/app_name"
            android:onClick="back"
            android:scaleType="centerCrop"
            android:src="@drawable/yd_left" />

        <TextView
            android:id="@+id/yd_navigation_title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="服务条款"
            android:textColor="#080808"
            android:textSize="16dp" />
    </RelativeLayout>

    <WebView
        android:id="@+id/wv_protocol"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="1dp" />
</LinearLayout>