mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-12 18:11:57 +01:00
22 lines
849 B
XML
22 lines
849 B
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="vertical">
|
|
|
|
<com.github.mikephil.charting.charts.PieChart
|
|
android:id="@+id/todaystepschart"
|
|
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.BarChart
|
|
android:id="@+id/weekstepschart"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_weight="20" />
|
|
|
|
</LinearLayout>
|