mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-03 17:02:13 +01:00
53 lines
2.2 KiB
XML
53 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
android:id="@+id/card_widget_screen"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp"
|
|
android:foreground="?android:attr/selectableItemBackground"
|
|
app:cardBackgroundColor="?attr/cardview_background_color"
|
|
card_view:cardElevation="3dp"
|
|
card_view:contentPadding="4dp">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp">
|
|
|
|
<TextView
|
|
android:id="@+id/widget_screen_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_marginStart="3dp"
|
|
android:layout_marginTop="0dp"
|
|
android:layout_marginEnd="0dp"
|
|
android:layout_marginBottom="4dp"
|
|
android:text="Screen 1"
|
|
android:textAppearance="?android:attr/textAppearance" />
|
|
|
|
<TextView
|
|
android:id="@+id/widget_screen_description"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_marginStart="3dp"
|
|
android:layout_marginTop="25dp"
|
|
android:layout_marginEnd="0dp"
|
|
android:layout_marginBottom="0dp"
|
|
android:text="x widgets"
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
</RelativeLayout>
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|