2024-04-04 21:28:04 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context=".activities.DashboardFragment">
|
|
|
|
|
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
|
|
|
android:id="@+id/dashboard_swipe_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2024-04-06 21:16:13 +02:00
|
|
|
android:layout_margin="8dp"
|
2024-04-04 21:28:04 +02:00
|
|
|
android:orientation="horizontal">
|
2024-04-06 21:16:13 +02:00
|
|
|
<Button
|
|
|
|
android:id="@+id/arrow_left"
|
2024-04-04 21:28:04 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2024-04-06 21:16:13 +02:00
|
|
|
android:minWidth="0dp"
|
|
|
|
android:text="\u003C"
|
2024-04-04 21:28:04 +02:00
|
|
|
android:textStyle="bold"
|
2024-04-06 21:16:13 +02:00
|
|
|
android:textSize="20sp"
|
|
|
|
android:layout_alignParentLeft="true" />
|
2024-04-04 21:28:04 +02:00
|
|
|
<TextView
|
2024-04-06 21:16:13 +02:00
|
|
|
android:id="@+id/dashboard_date"
|
2024-04-04 21:28:04 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2024-04-06 21:16:13 +02:00
|
|
|
android:text="@string/activity_summary_today"
|
2024-04-04 21:28:04 +02:00
|
|
|
android:textStyle="bold"
|
2024-04-06 21:16:13 +02:00
|
|
|
android:textSize="25sp"
|
|
|
|
android:layout_centerInParent="true"/>
|
|
|
|
<Button
|
2024-04-04 21:28:04 +02:00
|
|
|
android:id="@+id/arrow_right"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2024-04-06 21:16:13 +02:00
|
|
|
android:minWidth="0dp"
|
2024-04-04 21:28:04 +02:00
|
|
|
android:text="\u003E"
|
|
|
|
android:textStyle="bold"
|
2024-04-06 21:16:13 +02:00
|
|
|
android:textSize="20sp"
|
|
|
|
android:layout_alignParentRight="true" />
|
2024-04-04 21:28:04 +02:00
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<androidx.gridlayout.widget.GridLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/dashboard_gridlayout"
|
|
|
|
app:columnCount="2" />
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
|
|
|
</RelativeLayout>
|