1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:gravity="center"
- android:orientation="vertical"
- android:padding="8dp"
- android:background="@color/sapi_background_color">
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/bd_ic_network_info"
- android:contentDescription="@string/sapi_app_name"/>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="14sp"
- android:textColor="@color/sapi_edit_neting_color"
- android:text="@string/sapi_common_network_unavailable"/>
- <RelativeLayout
- android:id="@+id/btn_network_settings"
- android:layout_width="fill_parent"
- android:layout_height="44dp"
- android:layout_marginTop="10dp"
- android:background="@drawable/bd_web_btn_selector"
- android:visibility="gone"
- android:clickable="true">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:clickable="false"
- android:focusable="false"
- android:text="@string/sapi_common_setting_btn_text"
- android:textColor="@color/sapi_btn_text_color"
- android:textSize="16sp" />
- </RelativeLayout>
- </LinearLayout>
|