12345678910111213141516171819 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <!-- <android.support.v7.widget.Toolbar-->
- <!-- android:id="@+id/toolbar"-->
- <!-- android:layout_width="match_parent"-->
- <!-- android:layout_height="?attr/actionBarSize"-->
- <!-- android:background="@color/colorPrimary"-->
- <!-- app:title="自定义协议页"-->
- <!-- app:titleTextColor="@android:color/white" />-->
- <WebView
- android:id="@+id/webView"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
- </LinearLayout>
|