これは 2 を使用した私の XMLLinearLayouts
です。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:id="@+id/ll_one"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
/>
<LinearLayout
android:id="@+id/ll_two"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
/>
</LinearLayout>
http://android.arnodenhond.com/components/graphviewから GraphView をダウンロードしました。このクラスは View を拡張します。私は基本的に2つのグラフを初期化したい
String[] verlabels = new String[]{"aim", "25%", "50%", "75%", "start"};
String[] horlabels = new String[]{"this", "max"};
float[] values = new float[]{2.0f, 6.0f};
aaaGraphView graphView = new aaaGraphView(this, values, "Graph One",
horlabels, verlabels, aaaGraphView.BAR);
float[] values2 = new float[]{1.0f, 12.0f};
aaaGraphView graphView2 = new aaaGraphView(this, values2, "Graph Two",
horlabels, verlabels, aaaGraphView.BAR);
そして、 、 、 に膨らませgraphView
ます。ll_one
graphView2
ll_two
どうすればいいですか?を初期化しましたLinearLayout
llOne = (LinearLayout) findViewById(R.id.ll_one);
しかし、それは方法を持っていませんinflate()
。