0

我创建了自定义视图,并希望将多个数字插入到滚动列表中,但始终只显示一个视图:

  <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 实例。我该怎么办?

4

1 回答 1

4

默认情况下,LinearLayout 是水平的,因此添加android:orientation="vertical"到 LinearLayout 以解决问题。

于 2012-07-26T20:27:54.030 回答