123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#00ffffff" >
- <RelativeLayout
- android:id="@+id/huo_sdk_rl_top"
- android:layout_width="match_parent"
- android:layout_height="50dip"
- android:visibility="gone"
- android:background="@color/huouniongame_sdk_black"
- >
- <ImageView
- android:id="@+id/huo_sdk_iv_return"
- android:layout_width="20dp"
- android:layout_height="20dp"
- android:src="@drawable/huouniongame_sdk_float_ic_back"
- android:layout_centerVertical="true"
- android:layout_marginLeft="12dip"/>
- <TextView
- android:id="@+id/huo_sdk_tv_back"
- android:layout_toRightOf="@id/huo_sdk_iv_return"
- android:layout_width="wrap_content"
- android:layout_height="38dp"
- android:layout_centerVertical="true"
- android:gravity="center"
- android:paddingBottom="6dip"
- android:paddingLeft="2dip"
- android:paddingRight="8dip"
- android:paddingTop="6dip"
- android:text="返回"
- android:textColor="@android:color/white" />
- <TextView
- android:id="@+id/huo_sdk_tv_charge_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="20dp"
- android:text="用户中心"
- android:maxLength="8"
- android:layout_centerInParent="true"
- android:textColor="@android:color/white"/>
- <ImageView
- android:id="@+id/huo_sdk_iv_cancel"
- android:layout_width="wrap_content"
- android:layout_height="40dp"
- android:paddingTop="12dp"
- android:paddingBottom="12dp"
- android:paddingRight="24dp"
- android:paddingLeft="20dp"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_marginLeft="5dip"
- android:gravity="center"
- android:src="@drawable/huouniongame_sdk_float_ic_action_cancel" />
-
- </RelativeLayout>
- <WebView
- android:id="@+id/huo_sdk_wv_content"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="#00ffffff"
- android:layout_below="@id/huo_sdk_rl_top"
- />
- </RelativeLayout>
|