gpt4 book ai didi

java - ScrollView Android 与图像

转载 作者:行者123 更新时间:2023-12-01 22:19:27 26 4
gpt4 key购买 nike

我想在垂直 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>

还有类(class):

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);
}
}

最佳答案

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

关于java - ScrollView Android 与图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30221591/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com