2016-11-24 12:54:14 +01:00
|
|
|
<FrameLayout 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"
|
2018-06-08 19:22:03 +02:00
|
|
|
android:paddingTop="2dp"
|
2019-02-28 23:16:50 +01:00
|
|
|
tools:context=".plugins.general.wear.WearFragment">
|
2016-11-24 12:54:14 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2022-02-23 19:05:55 +01:00
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
style="@style/GrayButton"
|
2021-01-23 22:42:13 +01:00
|
|
|
android:id="@+id/resend"
|
2016-11-24 12:54:14 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="3dp"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:layout_weight="0.5"
|
2016-11-29 15:01:00 +01:00
|
|
|
android:text="@string/resend_all_data"
|
2022-03-15 13:24:51 +01:00
|
|
|
android:textColor="?attr/treatmentButton" />
|
2016-11-24 16:08:01 +01:00
|
|
|
|
2022-02-23 19:05:55 +01:00
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
style="@style/GrayButton"
|
2021-01-23 22:42:13 +01:00
|
|
|
android:id="@+id/opensettings"
|
2016-11-24 16:08:01 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="3dp"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:layout_weight="0.5"
|
2016-11-29 15:01:00 +01:00
|
|
|
android:text="@string/open_settings_on_wear"
|
2022-03-15 13:24:51 +01:00
|
|
|
android:textColor="?attr/treatmentButton" />
|
2016-11-24 12:54:14 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</FrameLayout>
|