123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="@color/bd_transparent"
- android:gravity="center" >
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:gravity="center_horizontal"
- android:orientation="horizontal" >
- <LinearLayout
- android:layout_width="360dp"
- android:layout_height="match_parent"
- android:orientation="vertical" >
- <include
- android:id="@+id/bd_layout_prefecture_header"
- layout="@layout/bd_container_header"
- android:layout_height="@dimen/bd_op_header_height"
- android:layout_width="match_parent"
- android:layout_marginTop="@dimen/bd_op_land_margin_top"/>
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/bdp_white" >
- <LinearLayout
- android:id="@+id/bd_layout_net_error"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:gravity="center"
- android:orientation="vertical" >
- <ImageView
- android:id="@+id/bd_iv_network_error"
- android:layout_width="78dp"
- android:layout_height="78dp"
- android:src="@drawable/bd_ic_network_info" />
- <TextView
- android:id="@+id/bd_tv_network_error"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="19dp"
- android:text="@string/bd_tip_web_network_error"
- android:textColor="@color/bd_color_666666"
- android:textSize="@dimen/bd_text_size_14_sp" />
- <Button
- android:id="@+id/bd_btn_retry"
- android:layout_width="96dp"
- android:layout_height="33dp"
- android:layout_marginTop="18dp"
- android:background="@drawable/bd_web_btn_selector"
- android:gravity="center"
- android:text="@string/bd_retry"
- android:textColor="@color/bd_color_333333"
- android:textSize="@dimen/bd_text_size_14_sp" />
- </LinearLayout>
- <WebView
- android:id="@+id/float_web_view"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"/>
- <TextView
- android:id="@+id/float_web_view_loading"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:gravity="center"
- android:text="@string/bd_web_loading" />
- </FrameLayout>
- </FrameLayout>
- <LinearLayout
- android:id="@+id/bd_layout_progress_prefecture"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_centerInParent="true"
- android:background="@color/bd_transparent"
- android:gravity="center"
- android:orientation="horizontal"
- android:visibility="gone" >
- <include
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- layout="@layout/bd_common_progress_small" />
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
- </RelativeLayout>
|