1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?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:background="@color/qyfont_white"
- android:orientation="vertical" >
- <!-- header -->
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:background="@drawable/cy_logintip" >
- <LinearLayout
- android:id="@+id/web_backbtn"
- android:layout_width="30dp"
- android:layout_height="30dp"
- android:layout_centerVertical="true"
- android:layout_marginLeft="5dp"
- android:clickable="true"
- android:gravity="center" >
- <ImageView
- android:layout_width="45dp"
- android:layout_height="45dp"
- android:background="@drawable/cy_back"
- />
- </LinearLayout>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_centerVertical="true"
- android:text="充值中心"
- android:textColor="@color/qyfont_black"
- android:textSize="22sp" />
- </RelativeLayout>
-
- <WebView
- android:id="@+id/webview"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
- </LinearLayout>
|