mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-13 21:49:27 +01:00
110 lines
4.3 KiB
XML
110 lines
4.3 KiB
XML
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout 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:id="@+id/activity_swipe_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context="nodomain.freeyourgadget.gadgetbridge.activities.charts.ActivityChartsActivity">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/charts_main_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<nodomain.freeyourgadget.gadgetbridge.activities.charts.NonSwipeableViewPager
|
|
android:id="@+id/charts_pager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
tools:context="nodomain.freeyourgadget.gadgetbridge.activities.charts.ActivityChartsActivity">
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
android:id="@+id/charts_pagerTabStrip"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="top"
|
|
app:tabMode="scrollable" />
|
|
</nodomain.freeyourgadget.gadgetbridge.activities.charts.NonSwipeableViewPager>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/charts_date_bar"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="fill_horizontal"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/charts_text_date"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_horizontal"
|
|
android:layout_weight="1"
|
|
android:text="Today" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/charts_date_button_bar"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="fill_horizontal"
|
|
android:orientation="horizontal">
|
|
|
|
<Button
|
|
android:id="@+id/charts_previous_month"
|
|
android:layout_width="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_height="wrap_content"
|
|
android:padding="0dp"
|
|
android:layout_marginHorizontal="2dp"
|
|
android:text="<<<" />
|
|
|
|
<Button
|
|
android:id="@+id/charts_previous_week"
|
|
android:layout_width="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_height="wrap_content"
|
|
android:padding="0dp"
|
|
android:layout_marginHorizontal="2dp"
|
|
android:text="<<" />
|
|
|
|
<Button
|
|
android:id="@+id/charts_previous_day"
|
|
android:layout_width="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_height="wrap_content"
|
|
android:padding="0dp"
|
|
android:layout_marginHorizontal="2dp"
|
|
android:text="<" />
|
|
|
|
<Button
|
|
android:id="@+id/charts_next_day"
|
|
android:layout_width="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_height="wrap_content"
|
|
android:padding="0dp"
|
|
android:layout_marginHorizontal="2dp"
|
|
android:text=">" />
|
|
<Button
|
|
android:id="@+id/charts_next_week"
|
|
android:layout_width="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_height="wrap_content"
|
|
android:padding="0dp"
|
|
android:layout_marginHorizontal="2dp"
|
|
android:text=">>" />
|
|
|
|
<Button
|
|
android:id="@+id/charts_next_month"
|
|
android:layout_width="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_height="wrap_content"
|
|
android:padding="0dp"
|
|
android:layout_marginHorizontal="2dp"
|
|
android:text=">>>" />
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|