In landscape format, layout bar and pie chart horizontally
This commit is contained in:
parent
e1c02cc373
commit
8128651bcc
|
@ -0,0 +1,27 @@
|
||||||
|
<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">
|
||||||
|
|
||||||
|
<nodomain.freeyourgadget.gadgetbridge.activities.charts.CustomBarChart
|
||||||
|
android:id="@+id/sleepchart"
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
|
||||||
|
android:layout_weight="20" />
|
||||||
|
|
||||||
|
<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="20">
|
||||||
|
</com.github.mikephil.charting.charts.PieChart>
|
||||||
|
|
||||||
|
<!--<TextView-->
|
||||||
|
<!--android:text="Test"-->
|
||||||
|
<!--android:layout_width="fill_parent"-->
|
||||||
|
<!--android:layout_height="fill_parent"-->
|
||||||
|
<!--android:layout_weight="20" />-->
|
||||||
|
|
||||||
|
</LinearLayout>
|
|
@ -1,13 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="match_parent">
|
|
||||||
|
|
||||||
<nodomain.freeyourgadget.gadgetbridge.activities.charts.CustomBarChart
|
|
||||||
android:id="@+id/sleepchart2"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="match_parent"
|
|
||||||
/>
|
|
||||||
|
|
||||||
|
|
||||||
</RelativeLayout>
|
|
Loading…
Reference in New Issue