線形レイアウトを 2 つの等しい半分に分割しようとしています。主な活動は以下のようなものです。これには、アダプターと 2 種類のチャート (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>
これどうやってするの?