| <?xml version="1.0" encoding="utf-8"?> | 
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 
|     android:orientation="vertical" | 
|     android:layout_width="match_parent" | 
|     android:layout_height="match_parent" | 
|     > | 
|     <RelativeLayout | 
|         android:layout_width="match_parent" | 
|         android:layout_height="44dp" | 
|         android:background="#0285f0" | 
|         > | 
|         <ImageView | 
|             android:layout_width="44dp" | 
|             android:layout_height="match_parent" | 
|             android:padding="10dp" | 
|             android:layout_centerVertical="true" | 
|             android:src="@drawable/nav_back" | 
|             android:scaleType="centerInside" | 
|             android:onClick="backClick" | 
|             /> | 
|         <TextView | 
|             android:layout_width="wrap_content" | 
|             android:layout_height="wrap_content" | 
|             android:text="协议" | 
|             android:textSize="20sp" | 
|             android:textColor="@color/sdp_white_color" | 
|             android:textStyle="bold" | 
|             android:layout_centerInParent="true"/> | 
|     </RelativeLayout> | 
|   | 
|     <WebView android:id="@+id/protocol_webview" | 
|         android:layout_width="match_parent" | 
|         android:layout_height="match_parent" | 
|         /> | 
| </LinearLayout> |