mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 10:31:03 +01:00
0ef738067d
Currently we get the heart rate when synchronizing activity data (i.e. not live) and we write it to the activity database so that we can show a nice graph. The value is currently always 0 though, because we can't enable recording hr, yet.
28 lines
1.0 KiB
XML
28 lines
1.0 KiB
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context="nodomain.freeyourgadget.gadgetbridge.activities.charts.ChartsActivity$PlaceholderFragment"
|
|
android:orientation="horizontal">
|
|
|
|
<com.github.mikephil.charting.charts.PieChart
|
|
android:id="@+id/sleepchart_pie_light_deep"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="40">
|
|
</com.github.mikephil.charting.charts.PieChart>
|
|
|
|
<com.github.mikephil.charting.charts.CombinedChart
|
|
android:id="@+id/sleepchart"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_weight="20" />
|
|
|
|
<!--<TextView-->
|
|
<!--android:text="Test"-->
|
|
<!--android:layout_width="fill_parent"-->
|
|
<!--android:layout_height="fill_parent"-->
|
|
<!--android:layout_weight="20" />-->
|
|
|
|
</LinearLayout>
|