mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 02:21:14 +01:00
8f4e933e30
- keep screen on while live activity is visible - hide the date bar (prev&forward buttons) - live activity chart is still nowhere near usable
49 lines
1.9 KiB
XML
49 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<com.github.mikephil.charting.charts.LineChart
|
|
android:id="@+id/livechart_steps_total"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="20">
|
|
</com.github.mikephil.charting.charts.LineChart>
|
|
|
|
<com.github.mikephil.charting.charts.LineChart
|
|
android:id="@+id/livechart_steps_per_minute_current"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="20">
|
|
</com.github.mikephil.charting.charts.LineChart>
|
|
<!--
|
|
<com.github.mikephil.charting.charts.PieChart
|
|
android:id="@+id/livechart_steps_total"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="20">
|
|
</com.github.mikephil.charting.charts.PieChart>
|
|
|
|
<com.github.mikephil.charting.charts.PieChart
|
|
android:id="@+id/livechart_steps_per_minute_current"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="20">
|
|
</com.github.mikephil.charting.charts.PieChart>
|
|
-->
|
|
</LinearLayout>
|
|
|
|
<com.github.mikephil.charting.charts.LineChart
|
|
android:id="@+id/livechart_steps_per_minute_history"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="20">
|
|
</com.github.mikephil.charting.charts.LineChart>
|
|
|
|
|
|
</LinearLayout> |