12345678910111213141516171819202122232425 |
- <?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">
- <RelativeLayout
- android:layout_width="@dimen/jm_login_width_8"
- android:layout_height="@dimen/jm_login_height_8"
- android:background="@color/jmfont_white">
- <Button
- android:id="@+id/btn_reback"
- android:layout_width="@dimen/jm_login_icon_width"
- android:layout_height="@dimen/jm_login_icon_width"
- android:layout_marginLeft="@dimen/jm_reback_margin"
- android:layout_marginTop="@dimen/jm_reback_margin"
- android:background="@drawable/jm_reback" />
- <WebView
- android:id="@+id/wv_content"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- </RelativeLayout>
- </LinearLayout>
|