123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- ~ Copyright (C) 2019 Baidu, Inc. All Rights Reserved.
- -->
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#00000000"
- android:gravity="center" >
- <RelativeLayout
- android:layout_width="285dp"
- android:layout_height="330dp"
- android:background="@drawable/bd_announce_view_bg">
- <ImageView
- android:id="@+id/bd_web_iv_close"
- android:padding="5dp"
- android:layout_width="29dp"
- android:layout_height="29dp"
- android:layout_marginRight="10dp"
- android:layout_marginTop="5dp"
- android:layout_alignParentRight="true"
- android:src="@drawable/bd_web_btn_close_selector"/>
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginTop="39dp"
- android:layout_marginBottom="11dp"
- 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>
- </RelativeLayout>
|