12345678910111213141516171819202122 |
- <?xml version="1.0" encoding="utf-8"?>
- <com.ejyx.widget.WebDrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/ej_drawer"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:fitsSystemWindows="true"
- android:orientation="vertical"
- android:background="@color/ej_transparent"
- tools:openDrawer="start">
- <com.ejyx.widget.CommonWebView
- android:id="@+id/ej_web_view"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="start"
- android:adjustViewBounds="true"
- android:fitsSystemWindows="true"
- android:minHeight="@dimen/dp_150"
- android:background="@color/ej_transparent"/>
- </com.ejyx.widget.WebDrawerLayout>
|