30 lines
879 B
XML
30 lines
879 B
XML
<?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:background="@color/white"
|
|
android:id="@+id/content_root" >
|
|
|
|
<com.ama.core.architecture.widget.CustomTitleBar
|
|
android:id="@+id/titlebar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
/>
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:layout_marginHorizontal="15dp" >
|
|
<WebView
|
|
android:id="@+id/web_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
/>
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|