forked from penguin86/luna-tracker
Features: - Sleep tracking with timer and manual duration input - Statistics module with 5 tabs (daily summary, feeding, diapers, sleep, growth) - Export/Import backup functionality in settings - Complete German, French and Italian translations
58 lines
1.9 KiB
XML
58 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:paddingTop="10dp"
|
|
android:paddingHorizontal="15dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/button_back"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="10dp"
|
|
android:src="@drawable/ic_back"
|
|
app:tint="@color/grey"/>
|
|
|
|
<TextView
|
|
android:id="@+id/statistics_title"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="@string/statistics_title"
|
|
android:textSize="22sp"
|
|
android:gravity="center"/>
|
|
|
|
<Spinner
|
|
android:id="@+id/period_spinner"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:minWidth="80dp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
android:id="@+id/tab_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
app:tabMode="scrollable"
|
|
app:tabGravity="start"
|
|
app:tabTextColor="@color/grey"
|
|
app:tabSelectedTextColor="@color/accent"
|
|
app:tabIndicatorColor="@color/accent"/>
|
|
|
|
<androidx.viewpager2.widget.ViewPager2
|
|
android:id="@+id/view_pager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"/>
|
|
|
|
</LinearLayout>
|