关于这个问题一定有问题,但我找到的相关问题都没有解决我的问题。如此。
我有以下情况,我想要一个屏幕,我可以在我将拥有的多个图表上向下滚动。 Like this image represents here
现在,使用下面的代码I am getting this result。
所以,正在发生的事情是两个图表都在彼此之间,我不知道为什么。
<?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="wrap_content"
android:id="@+id/mainLayout">
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/secondLayout">
<com.github.mikephil.charting.charts.PieChart
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/pieChart" />
<com.github.mikephil.charting.charts.BarChart
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/barChart"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentBottom="true" />
</RelativeLayout>
</ScrollView>
</RelativeLayout>
我正在使用MPAndroidchart库。
感谢。
答案 0 :(得分:1)
试试这个修改版本
tr -d '\n'
答案 1 :(得分:0)
问题不明确,你的问题到底是什么? 如果你的意思是你的图表在彼此之间,请尝试使用LinearLayout和垂直方向而不是你的第二个RelativeLayout。