<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/common_wifi_cl"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/no_wifi_reload_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center_horizontal"
android:orientation="vertical">
<ImageView
android:layout_width="88dp"
android:layout_height="65dp"
android:src="@mipmap/icon_wifi" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:text="@string/unable_to_connect_to_the_network"
android:textColor="@color/app_color_1B1"
android:textSize="12sp" />
<TextView
android:padding="5dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:background="@drawable/bg_login_btn"
android:text="@string/reload"
android:textColor="@color/app_color_white"
android:textSize="14sp" />
</LinearLayout>
</RelativeLayout>
|