Gadgetbridge/app/src/main/res/layout/fragment_sleepchart.xml

27 lines
990 B
XML
Raw Normal View History

<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">
2018-08-16 16:59:56 +02:00
<TextView
android:id="@+id/sleepchart_info"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0" />
<com.github.mikephil.charting.charts.PieChart
android:id="@+id/sleepchart_pie_light_deep"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
2018-08-16 16:59:56 +02:00
android:layout_weight="2" />
<com.github.mikephil.charting.charts.LineChart
android:id="@+id/sleepchart"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
2018-08-16 16:59:56 +02:00
android:layout_weight="2" />
</LinearLayout>