12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?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="@color/bd_transparent"
- android:gravity="center" >
- <LinearLayout
- android:id="@+id/bd_ll_header"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <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_portrait_top"/>
- </LinearLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_below="@+id/bd_ll_header" >
- <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="match_parent"
- android:layout_height="match_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>
- </RelativeLayout>
- <LinearLayout
- android:id="@+id/bd_layout_progress_prefecture"
- android:layout_width="match_parent"
- android:layout_height="match_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>
- </RelativeLayout>
|