我想在scrollview中添加图片。我的代码如下。有两个图像。而且我不想在其中显示空白图像。我将使用大约10张图片。我该怎么做?
它显示如下---->
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/mat1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/mata"
/>
<ImageView
android:layout_below="@+id/mat1"
android:id="@+id/mat2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/matb"
/>
</RelativeLayout>
</ScrollView>