안드로이드 개발 질문/답변
(글 수 45,052)
2012.09.06 20:55:44
요래하시면 되요
이미지가 정상적으로 나오지 않을시
android:scaleType="fitXY" 요길 수정 해보세요
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/information_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY" >
</ImageView>
</ScrollView>
2012.09.06 21:05:41
위젯에서는 ScrollView 를 사용할 수 없습니다.
http://developer.android.com/guide/topics/appwidgets/index.html 참고하세요.



