act_web.xml 606 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical"
  6. android:background="@color/white_F9F9F9">
  7. <include
  8. layout="@layout/title"/>
  9. <WebView
  10. android:id="@+id/webview"
  11. android:layout_width="match_parent"
  12. android:layout_height="0dp"
  13. android:layout_weight="1"
  14. android:scrollbars="none"
  15. android:background="@drawable/x_shap_shadow_bg_rectgangle_white"/>
  16. </LinearLayout>