2016-11-19 22:13:00 +01:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-04-03 21:09:35 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
2016-11-19 22:13:00 +01:00
|
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingTop="@dimen/activity_vertical_margin"
|
|
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
|
|
tools:context="nodomain.freeyourgadget.gadgetbridge.devices.pebble.PebblePairingActivity">
|
|
|
|
|
2017-04-03 21:09:35 +02:00
|
|
|
<TextView
|
|
|
|
android:text="@string/pairing"
|
|
|
|
android:layout_width="wrap_content"
|
2016-11-19 22:13:00 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/pebble_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/pebble_pair_message"
|
|
|
|
android:layout_centerHorizontal="true" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2016-11-19 22:45:42 +01:00
|
|
|
android:text="@string/pebble_pairing_hint"
|
|
|
|
android:id="@+id/pebble_pair_hint"
|
2016-11-19 22:13:00 +01:00
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_alignParentStart="true" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|