41 lines
1.6 KiB
XML
41 lines
1.6 KiB
XML
<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"
|
|
android:paddingTop="2dp"
|
|
tools:context=".plugins.general.wear.WearFragment">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
style="@style/GrayButton"
|
|
android:id="@+id/resend"
|
|
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"
|
|
android:text="@string/resend_all_data"
|
|
android:textColor="?attr/treatmentButton" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
style="@style/GrayButton"
|
|
android:id="@+id/opensettings"
|
|
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"
|
|
android:text="@string/open_settings_on_wear"
|
|
android:textColor="?attr/treatmentButton" />
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout>
|