안드로이드 초보개발자입니다^^ 스크롤뷰를 이용하여 그림 긴것을 넣었더니 아래 공간이 남아 있음에도 불구하고 이 공간을 없앨수가 없네요; (이것저것 코드 수정하면서 해봣는데 오히려 더 망쳐만 갈뿐이에요 ㅠㅠ)

당연히 그림원본은 공간이 없는상태입니다 답변 기다리겠습니다 감사합니다^^

 

그림1.png

소스코드)

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

        
    <ScrollView
        android:id="@+id/scrollView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical" >
           
       <ImageView
            android:id="@+id/imageView1"
            android:scaleType="fitStart"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:src="@drawable/combo1" />
        </LinearLayout>
       
    </ScrollView>

</LinearLayout>