87 lines
3.3 KiB
XML
87 lines
3.3 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:background="#DD000000"
|
||
|
|
android:padding="24dp">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="0dp"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:gravity="center">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:id="@+id/qr_card_container"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:background="@drawable/rounded_button"
|
||
|
|
android:backgroundTint="#1A1A1A"
|
||
|
|
android:elevation="8dp"
|
||
|
|
android:padding="16dp">
|
||
|
|
|
||
|
|
<RelativeLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginBottom="4dp">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/qr_network_title"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_alignParentStart="true"
|
||
|
|
android:layout_centerVertical="true"
|
||
|
|
android:layout_toStartOf="@+id/btn_flip_qr"
|
||
|
|
android:text="Wi-Fi Network"
|
||
|
|
android:textColor="#FFFFFF"
|
||
|
|
android:textSize="22sp"
|
||
|
|
android:textStyle="bold" />
|
||
|
|
|
||
|
|
<ImageButton
|
||
|
|
android:id="@+id/btn_flip_qr"
|
||
|
|
android:layout_width="48dp"
|
||
|
|
android:layout_height="48dp"
|
||
|
|
android:layout_alignParentEnd="true"
|
||
|
|
android:layout_centerVertical="true"
|
||
|
|
android:background="?android:attr/selectableItemBackgroundBorderless"
|
||
|
|
android:src="@android:drawable/ic_popup_sync"
|
||
|
|
android:contentDescription="@string/qr_flip_network"
|
||
|
|
android:tint="#FFFFFF"
|
||
|
|
android:scaleType="fitCenter"
|
||
|
|
android:padding="8dp"
|
||
|
|
android:visibility="gone" />
|
||
|
|
</RelativeLayout>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/qr_ip_text"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="http://---"
|
||
|
|
android:textColor="#AAAAAA"
|
||
|
|
android:textSize="16sp"
|
||
|
|
android:layout_marginBottom="16dp" />
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/qr_image_view"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:adjustViewBounds="true"
|
||
|
|
android:scaleType="fitCenter"
|
||
|
|
android:background="#FFFFFF"
|
||
|
|
android:padding="16dp" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:id="@+id/btn_close_qr"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="56dp"
|
||
|
|
android:layout_marginTop="24dp"
|
||
|
|
android:text="Close"
|
||
|
|
android:backgroundTint="@color/btn_danger"
|
||
|
|
android:textColor="#FFFFFF" />
|
||
|
|
|
||
|
|
</LinearLayout>
|