화면 구성하는데 스크롤뷰에 이미지뷰를 넣었는데 ... 위에 공간이 떠버리는데???
저는 위부분부터 이미지뷰를 보고 싶은데 잘안되네요 ~ ㅜㅜ

레이아웃 구성
 <FrameLayout
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:layout_weight="1">
  <LinearLayout
  android:id="@+id/linerar_new1"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:visibility="visible"
  android:gravity="top">
 <ScrollView
 android:layout_width="fill_parent"
 android:layout_height="fill_parent">
 <ImageView
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:src="@drawable/sub2"/>
 </ScrollView>
  </LinearLayout>