#nestedscrollview 썸네일형 리스트형 [Android] scrollview match_parent not working ScrollView 안에 있는 View에 match_parent를 줬는데도 높이가 변경이 되지 않는다. 위 소스를 보면 간단하다. NestedScrollView 안에 TextView가 들어 있다.layout_height 값이 match_parent로 되어 있지만, 아래와 같이 높이가 변경 되지 않았다. 이럴 경우 ScrollView에 속성 하나만 추가해주면 된다. android:fillViewport="true" 위 속성만 추가 해주면 된다.그럼 ScrollView 안에 있는 View를 Strech 해주는 역할을 합니다. 출처: https://stackoverflow.com/a/10211418 참고 하세요. 더보기 [Android] ScrollView 안에 Multi Edittext or TextView 위 와 같이 ScrollView 안에 여러 라인의 TextView나 EditText를 넣었을 경우,ScrollView가 최상위 View 이므로 EditText와 TextView에 적용 되는 Scroll이 먹히지 않습니다. 만약 TextView나 EditText가 고정 사이즈일 경우 화면을 넘어간 문자열은볼수가 없는 상황이 되는 것이죠. 그럼 이럴 때는 어떻게 하느냐~ 아래 소스 처럼 하면 됩니다. 출처 : http://qiita.com/noboru_i/items/09e7d3f8f222834378cc참고 : https://github.com/android/platform_development/blob/master/samples/Support4Demos/res/layout/nested_scroll.xml [.. 더보기 이전 1 다음