2015-05-05 00:48:02 +02:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingTop="@dimen/activity_vertical_margin"
|
|
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
2015-08-03 23:09:49 +02:00
|
|
|
tools:context="nodomain.freeyourgadget.gadgetbridge.devices.miband.MiBandPairingActivity">
|
2015-05-05 00:48:02 +02:00
|
|
|
|
|
|
|
<TextView android:text="@string/miband_pairing" android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/miband_pair_message" />
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/progressBar"
|
|
|
|
android:layout_marginTop="25dp"
|
|
|
|
android:layout_below="@+id/miband_pair_message"
|
|
|
|
android:layout_centerHorizontal="true" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-05-08 00:42:46 +02:00
|
|
|
android:text="@string/miband_pairing_tap_hint"
|
2015-05-05 00:48:02 +02:00
|
|
|
android:id="@+id/miband_pair_hint"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_alignParentStart="true" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|