以编程方式将LinearLayouts添加到ScrollView

时间:2013-03-20 16:46:20

标签: android android-layout

我有一个xml视图,其中包含 ScrollView (子项 LinearLayout )。

...
   <ScrollView
        android:id="@+id/scrollView_container"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_alignParentLeft="true"
        android:layout_marginTop="33dp" >

        <LinearLayout
            android:id="@+id/image_holder"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" >
        </LinearLayout>
    </ScrollView>
...

我正在尝试动态添加一些图像,我想每行3个。

private void createDice(LinearLayout ll, Integer required) {
    ArrayList<Integer> images = new ArrayList<Integer>();
    images.add(R.drawable.one);
    images.add(R.drawable.two);
    images.add(R.drawable.three);
    images.add(R.drawable.four);
    images.add(R.drawable.five);
    images.add(R.drawable.six);

    ScreenHelper screen = new ScreenHelper(MainActivity.this);
    Map<String, Float> s = screen.getScreenSize();
    Integer maxPerRow = (int) (s.get("width") / 90); // images are 89px wide
    Log.d(TAG, "max across::"+maxPerRow);

    Integer rows = (required / maxPerRow);
    Log.d(TAG, "rows::"+rows);
    for (int i=0; i < rows; i++) {
        Log.d(TAG, "i::"+i);
        // create linear layout for row
        LinearLayout llAlso = new LinearLayout(this);
        llAlso.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
        //llAlso.setOrientation(LinearLayout.HORIZONTAL);

        for (int j=0; j < 3; j++) {
            Log.d(TAG, "j::"+j);
            // create/add image for the row
            ImageView iv = new ImageView(this);
            iv.setImageResource(images.get(i));
            llAlso.addView(iv);
        }
        // add to main layout
        ll.addView(llAlso, i);
        Log.d(TAG, "adding to main view");
    }
}

我正在测试必需参数值为6.
问题是第一行图像被添加,但第二行不是因为它被添加到第一行(因此在屏幕外)而不是在它下面。

如何实现我想要的输出?

1 个答案:

答案 0 :(得分:4)

image_holder布局中的方向设置为vertical。默认情况下,LinearLayout的方向为horizontal。这意味着所有子视图都将添加到水平行中。由于您的子布局使用fill_parent作为宽度,因此只有一个孩子可以放入该行。通过将其切换为vertical,您的布局将添加到垂直列而不是连续。这样可以看到更多的布局。

另外,您应该考虑使用GridLayout代替。这恰好就是这种情况。