=================================
=================================
=================================
출처: https://cordinghouse.tistory.com/52
오류 :
android ScrollView 안에 WebView를 넣어 구현하였는데 naver같은 포털사이트에선 스크롤바가 딱 맞게 맞춰졌지만,
html 페이지를 띄우니 스크롤바가 무한대로 늘어나기 시작했다.
해결 :
<ScrollView
android:id="@+id/main_content_scroll"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<WebView
android:id="@+id/main_content_webView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</ScrollView>
웹뷰의 height를 wrap_content로 변경.
허무하다.
이외 관련 검색으로 찾아본 자료들
: http://charlie0301.blogspot.kr/2013/10/scrollview-listview-height.html
http://www.oschina.net/code/snippet_194968_7149
http://www.androidside.com/bbs/board.php?bo_table=b49&wr_id=148818
출처: https://cordinghouse.tistory.com/52 [코딩집]
=================================
=================================
=================================
댓글 영역