我正在尝试将线性布局分成相等的两半。主要活动如下。它包含一个列表视图,其中填充了一个适配器和两种类型的图表(MPAndroidChart 库)。
主要活动:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res
/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ListView
android:id="@+id/listViewChart"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="1" >
</ListView>
</LinearLayout>
以下是用于填充列表视图的 2 个图表。上半部分是折线图,下半部分是条形图。
折线图:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight=".50"
android:orientation="vertical" >
<com.github.mikephil.charting.charts.LineChart
android:id="@+id/chart"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
条形图:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight=".50"
android:orientation="vertical" >
<com.github.mikephil.charting.charts.BarChart
android:id="@+id/chart"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
我怎样才能做到这一点?