90 lines
3.0 KiB
XML
90 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/widget_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/widget_background"
|
|
android:orientation="vertical"
|
|
android:padding="12dp"
|
|
android:gravity="center">
|
|
|
|
<!-- Header with icon and "Weekly" text -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
android:layout_marginBottom="12dp">
|
|
|
|
<ImageView
|
|
android:layout_width="28dp"
|
|
android:layout_height="28dp"
|
|
android:src="@drawable/ic_mountains"
|
|
android:tint="@color/widget_primary"
|
|
android:layout_marginEnd="8dp"
|
|
android:contentDescription="@string/ascently_icon" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/weekly"
|
|
android:textSize="18sp"
|
|
android:textColor="@color/widget_text_primary" />
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Attempts Row -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
android:layout_marginBottom="12dp">
|
|
|
|
<ImageView
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"
|
|
android:src="@drawable/ic_circle_filled"
|
|
android:tint="@color/widget_primary"
|
|
android:layout_marginEnd="12dp"
|
|
android:contentDescription="Attempts icon" />
|
|
|
|
<TextView
|
|
android:id="@+id/widget_attempts_value"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="0"
|
|
android:textSize="40sp"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/widget_text_primary" />
|
|
|
|
</LinearLayout>
|
|
|
|
<!-- Sessions Row -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical">
|
|
|
|
<ImageView
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"
|
|
android:src="@drawable/ic_play_arrow_24"
|
|
android:tint="@color/widget_primary"
|
|
android:layout_marginEnd="12dp"
|
|
android:contentDescription="@string/sessions_icon" />
|
|
|
|
<TextView
|
|
android:id="@+id/widget_sessions_value"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/_0"
|
|
android:textSize="40sp"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/widget_text_primary" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|