mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-02-01 19:51:55 +01:00
43fddd0110
This adds a new dashboard-type view to Gadgetbridge. The new dashboard activity displays several widgets with aggregated statistics from multiple devices. New preferences are added to allow configuration of the dashboard and its widgets. A new bottom navigation bar is added to switch between the Dashboard and Devices views. Some issues that prompted this feature and provided inspiration for the implementation: - https://codeberg.org/Freeyourgadget/Gadgetbridge/issues/301 (More Intuitive User Interface) - https://codeberg.org/Freeyourgadget/Gadgetbridge/issues/3074 (Ability to merge historical data from several devices) Reviewed-on: https://codeberg.org/Freeyourgadget/Gadgetbridge/pulls/3478 Reviewed-by: José Rebelo <joserebelo@noreply.codeberg.org> Co-authored-by: Arjan Schrijver <a_gadgetbridge@anymore.nl> Co-committed-by: Arjan Schrijver <a_gadgetbridge@anymore.nl>
49 lines
1.8 KiB
XML
49 lines
1.8 KiB
XML
<android.widget.LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context=".activities.dashboard.DashboardCalendarActivity">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
<TextView
|
|
android:id="@+id/calendar_month"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp"
|
|
android:text="@string/calendar_month"
|
|
android:textStyle="bold"
|
|
android:textSize="30sp" />
|
|
<TextView
|
|
android:id="@+id/arrow_left"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="\u003C"
|
|
android:textStyle="bold"
|
|
android:textSize="40sp"
|
|
android:paddingHorizontal="8dp"
|
|
android:layout_toLeftOf="@+id/arrow_right" />
|
|
<TextView
|
|
android:id="@+id/arrow_right"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="\u003E"
|
|
android:textStyle="bold"
|
|
android:textSize="40sp"
|
|
android:paddingHorizontal="8dp"
|
|
android:layout_alignParentEnd="true"/>
|
|
</RelativeLayout>
|
|
|
|
<androidx.gridlayout.widget.GridLayout
|
|
android:id="@+id/dashboard_calendar_grid"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="15dp"
|
|
app:columnCount="7" />
|
|
|
|
</android.widget.LinearLayout>
|