带图像的ScrollView Android

时间:2015-05-13 17:28:50

标签: java android scrollview

我想在垂直滚动视图中放置三个图像,我不知道为什么,但我只看到第三个(tuto3)。

这是xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/scrollView" >

        <LinearLayout
            android:id="@+id/linearLayout42"
            android:orientation="vertical"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >
        </LinearLayout>

    </ScrollView>

</LinearLayout>

还有班级:

public class about extends ActionBarActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.aboutlayout);
        LinearLayout ll = (LinearLayout) findViewById(R.id.linearLayout42);
        ImageView image = new ImageView(about.this);
        image.setBackgroundResource(R.drawable.tuto1);
        ll.addView(image);
        ImageView image2 = new ImageView(about.this);
        image.setBackgroundResource(R.drawable.tuto2);
        ll.addView(image2);
        ImageView image3 = new ImageView(about.this);
        image.setBackgroundResource(R.drawable.tuto3);
        ll.addView(image3);
    }
}

1 个答案:

答案 0 :(得分:3)

您继续在image而不是imageimage1image2上调用setBackgroundResource。