123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- <?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">
- <RelativeLayout
- android:id="@+id/strategy_layout"
- android:layout_width="fill_parent"
- android:layout_height="44dp"
- android:background="@color/haoyu_pay_bar"
- android:orientation="horizontal"
- android:visibility="visible" >
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:background="@drawable/haoyu_layout_touch"
- android:orientation="horizontal"
- android:paddingBottom="10dp"
- android:paddingTop="10dp"
- >
- <LinearLayout
- android:id="@+id/strategy_layout_back"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="horizontal" >
- <TextView android:id="@+id/back"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="2dp"
- android:layout_marginLeft="2dp"
- android:drawableLeft="@drawable/haoyu_back_icon_nor"
- android:gravity="center"
- android:text="返回"
- android:scaleX="0.9"
- android:scaleY="0.9"
- android:textColor="#ff707070"
- android:textSize="16dp"
- android:layout_centerVertical="true"
- android:drawablePadding="5dp" />
- </LinearLayout>
- <TextView android:id="@+id/close"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="2dp"
- android:layout_marginLeft="5dp"
- android:drawablePadding="8dp"
- android:text="关闭"
- android:scaleX="0.9"
- android:scaleY="0.9"
- android:layout_gravity="center"
- android:textColor="#ff707070"
- android:textSize="16dp"
- android:layout_centerVertical="true"
- android:visibility="gone"/>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:layout_gravity="bottom"
- android:textColor="#ff707070"
- android:visibility="visible"/>
- </LinearLayout>
- <TextView
- android:id="@+id/title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:gravity="center"
- android:singleLine="true"
- android:textColor="@color/bb_black"
- android:textSize="17dip"
- android:width="160dp" />
- <!--
- <ImageView
- android:id="@+id/refresh"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_alignParentRight="true"
- android:layout_gravity="center_vertical"
- android:paddingRight="@dimen/d10"
- android:src="@drawable/appgame_webview_refresh"
- />
- -->
- <!--<view-->
- <!--android:layout_width="match_parent"-->
- <!--android:layout_height="0.5dp"-->
- <!--android:layout_alignParentBottom="true"/>-->
- </RelativeLayout>
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:gravity="center"
- android:orientation="vertical"
- android:layout_below="@+id/strategy_layout">
- <LinearLayout
- android:id="@+id/reloading_data_layout"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="#ffeeeeee"
- android:gravity="center"
- android:orientation="vertical">
- <TextView
- android:id="@+id/tip_fav_txt"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="网路异常,点击刷新"
- android:textColor="#ff707070"
- android:textSize="16sp" />
- </LinearLayout>
- <WebView
- android:id="@+id/webView"
- android:layout_width="fill_parent"
- android:layout_height="0dp"
- android:layout_weight="1" />
- </LinearLayout>
- <View
- android:id="@+id/view"
- android:layout_width="match_parent"
- android:layout_height="3dp"
- android:background="@drawable/haoyu_line_3"
- android:layout_below="@id/strategy_layout"/>
- </RelativeLayout>
|