我正在尝试将图像动态添加到滚动视图。要将图像添加到滚动视图,我正在使用以下代码:
LinearLayout sv = (LinearLayout)findViewById( R.id.filesScrollerLayout);
ImageView iv = new ImageView(this);
iv.setImageDrawable( new BitmapDrawable( pub.FirstPicture ) ); // same happens with ScaleDrawable.
iv.setScaleType( ScaleType.CENTER_INSIDE );
sv.addView( iv );
<ScrollView
android:id="@+id/scrollView2"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/scrollView1"
android:background="#FFFF00" >
<LinearLayout
android:id="@+id/filesScrollerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</LinearLayout>
</ScrollView>
所以我需要像这样向这个滚动视图添加图像:
|-------------
|
|Image 1
|-------------
|
|Image 2
|-------------
|
|Image 3
|-------------
为此,我需要以某种方式更改 Scrollview 的内容大小?
这是如何在 Android 中完成的?
谢谢。