我创建了自定义视图,并希望将多个数字插入到滚动列表中,但始终只显示一个视图:
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/buttonsPart"
android:id="@+id/scrollView1"
android:background="@drawable/greylayer">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.test.app.canvas.MatchCanvas
android:layout_width="fill_parent"
android:layout_height="400px"/>
<com.test.app.canvas.MatchCanvas
android:layout_width="fill_parent"
android:layout_height="400px"/>
</LinearLayout>
我相信向 ScrollView 插入尽可能多的自定义视图很容易,但不知何故,我仍然只有 1 个 MatchCanvas 实例。我该怎么办?