在ScrollView中使用ImageView而不留空

时间:2014-08-26 11:23:40

标签: android imageview scrollview

我想在scrollview中添加图片。我的代码如下。有两个图像。而且我不想在其中显示空白图像。我将使用大约10张图片。我该怎么做?

它显示如下---->

enter image description here

<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>

0 个答案:

没有答案