<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#E5FFF5"
android:fitsSystemWindows="false"
tools:context=".activity.main.WebActivity">
<com.github.lzyzsd.jsbridge.BridgeWebView
android:id="@+id/webactivity_webview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#E5FFF5" />
<ImageView
android:id="@+id/toobar_back"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginLeft="5dp"
android:layout_marginTop="40dp"
android:padding="10dp"
android:src="@mipmap/back"
android:visibility="gone"/>
</FrameLayout>
|