42 lines
No EOL
1.6 KiB
XML
42 lines
No EOL
1.6 KiB
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingTop="2dp"
|
|
tools:context=".plugins.general.wear.WearFragment">
|
|
|
|
<TextView
|
|
android:id="@+id/connected_device"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical|center_horizontal"
|
|
android:paddingTop="10dp"
|
|
android:paddingBottom="10dp"
|
|
android:text="@string/no_watch_connected"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
|
tools:ignore="HardcodedText" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/resend"
|
|
style="@style/GrayButton"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:drawableTop="@drawable/ic_refresh"
|
|
android:paddingLeft="0dp"
|
|
android:paddingRight="0dp"
|
|
android:text="@string/resend_all_data"
|
|
android:textColor="?attr/treatmentButton" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/open_settings"
|
|
style="@style/GrayButton"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:drawableTop="@drawable/ic_settings"
|
|
android:paddingLeft="0dp"
|
|
android:paddingRight="0dp"
|
|
android:text="@string/open_settings_on_wear"
|
|
android:textColor="?attr/treatmentButton" />
|
|
|
|
</LinearLayout> |