1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent" >
- <LinearLayout
- android:id="@+id/bdp_paycenter_layout_progress"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:gravity="center"
- android:orientation="horizontal" >
- <include
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- layout="@layout/bdp_paycenter_common_progress" />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/bdp_paycenter_layout_net_error"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:gravity="center"
- android:paddingLeft="8dp"
- android:paddingRight="8dp"
- android:orientation="vertical"
- android:visibility="gone" >
- <ImageView
- android:id="@+id/bdp_paycenter_iv_network_error"
- android:layout_width="64dp"
- android:layout_height="64dp"
- android:src="@drawable/bdp_paycenter_ic_network_info" />
- <TextView
- android:id="@+id/bdp_paycenter_tv_network_error"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="18dp"
- android:layout_gravity="center_horizontal"
- android:gravity="center_horizontal"
- android:text="@string/bdp_paycenter_tip_payment_network_error"
- android:textColor="@color/bdp_color_333333"
- android:textSize="@dimen/bdp_paycenter_text_size_16_sp" />
- <Button
- android:id="@+id/bdp_paycenter_btn_retry"
- android:layout_width="fill_parent"
- android:layout_height="36dp"
- android:layout_marginTop="18dp"
- android:layout_marginLeft="20dp"
- android:layout_marginRight="20dp"
- android:background="@drawable/bdp_paycenter_btn_pay_selector"
- android:gravity="center"
- android:text="@string/bdp_paycenter_retry"
- android:textColor="#ffffff"
- android:textSize="@dimen/bdp_paycenter_text_size_16_sp" />
- </LinearLayout>
- </FrameLayout>
|