61 lines
2.3 KiB
XML
61 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:gravity="center"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/device_name_prefix"
|
|
android:text="@string/swap_bluetooth_your_device"
|
|
android:gravity="center_horizontal"
|
|
style="@style/SwapTheme.BluetoothDeviceList.Heading"
|
|
android:paddingTop="10dp"
|
|
android:paddingBottom="10dp"
|
|
android:textSize="24sp"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/device_name"
|
|
tools:text="Phone v2.0"
|
|
android:gravity="center_horizontal"
|
|
style="@style/SwapTheme.BluetoothDeviceList.Heading"
|
|
android:paddingBottom="10dp"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/device_address"
|
|
tools:text="(01:02:03:ab:cd:ef)"
|
|
android:gravity="center_horizontal"
|
|
style="@style/SwapTheme.BluetoothDeviceList.Heading"
|
|
android:paddingBottom="20dp"
|
|
android:textSize="24sp"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/swap_bluetooth_select_or_scan"
|
|
android:gravity="center_horizontal"
|
|
style="@style/SwapTheme.BluetoothDeviceList.Text"
|
|
android:paddingLeft="20dp"
|
|
android:paddingRight="20dp"
|
|
android:paddingBottom="10dp"/>
|
|
|
|
<android.support.v4.widget.ContentLoadingProgressBar
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/loading_indicator"
|
|
android:paddingLeft="5dp"
|
|
android:paddingRight="5dp"
|
|
android:visibility="gone"
|
|
android:indeterminate="true"
|
|
style="?android:attr/android:progressBarStyleHorizontal"/>
|
|
|
|
</LinearLayout> |