ej_view_web_drawer.xml 878 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <com.ejyx.widget.WebDrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:id="@+id/ej_drawer"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:fitsSystemWindows="true"
  8. android:orientation="vertical"
  9. android:background="@color/ej_transparent"
  10. tools:openDrawer="start">
  11. <com.ejyx.widget.CommonWebView
  12. android:id="@+id/ej_web_view"
  13. android:layout_width="match_parent"
  14. android:layout_height="match_parent"
  15. android:layout_gravity="start"
  16. android:adjustViewBounds="true"
  17. android:fitsSystemWindows="true"
  18. android:minHeight="@dimen/dp_150"
  19. android:background="@color/ej_transparent"/>
  20. </com.ejyx.widget.WebDrawerLayout>