2015-09-02 08:00:26 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-08-27 18:26:49 +02:00
|
|
|
<android.support.v7.widget.GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:grid="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
grid:columnCount="2">
|
|
|
|
|
|
|
|
<nodomain.freeyourgadget.gadgetbridge.activities.charts.CustomBarChart
|
|
|
|
android:id="@+id/livechart_steps_per_minute_current"
|
|
|
|
grid:layout_columnWeight="1"
|
|
|
|
grid:layout_rowWeight="1"></nodomain.freeyourgadget.gadgetbridge.activities.charts.CustomBarChart>
|
|
|
|
|
|
|
|
<nodomain.freeyourgadget.gadgetbridge.activities.charts.CustomBarChart
|
|
|
|
android:id="@+id/livechart_steps_total"
|
|
|
|
grid:layout_columnWeight="1"
|
|
|
|
grid:layout_rowWeight="1"></nodomain.freeyourgadget.gadgetbridge.activities.charts.CustomBarChart>
|
|
|
|
|
|
|
|
<!--
|
2015-09-03 23:20:47 +02:00
|
|
|
<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>
|
2015-09-04 21:55:29 +02:00
|
|
|
-->
|
2015-09-03 23:20:47 +02:00
|
|
|
|
2015-09-02 08:00:26 +02:00
|
|
|
<com.github.mikephil.charting.charts.LineChart
|
|
|
|
android:id="@+id/livechart_steps_per_minute_history"
|
2017-08-27 18:26:49 +02:00
|
|
|
grid:layout_columnSpan="2"
|
|
|
|
grid:layout_columnWeight="1"
|
|
|
|
grid:layout_rowWeight="1"></com.github.mikephil.charting.charts.LineChart>
|
2015-09-02 08:00:26 +02:00
|
|
|
|
2015-09-02 23:49:06 +02:00
|
|
|
|
2017-08-27 18:26:49 +02:00
|
|
|
</android.support.v7.widget.GridLayout>
|