hch
2025-07-02 aaa822b7f20f04d9ae00fff5efa6c2ec7e2cd83c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?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>