마스터Q&A 안드로이드는 안드로이드 개발자들의 질문과 답변을 위한 지식 커뮤니티 사이트입니다. 안드로이드펍에서 운영하고 있습니다. [사용법, 운영진]

스크롤이 내려가지를 않네요

0 추천

<LinearLayout

android:layout_width="match_parent"

android:layout_height="0dp"

android:layout_weight="0.85"

android:orientation="vertical">

<ScrollView

android:layout_width="wrap_content"

android:layout_height="match_parent"

android:scrollbars="vertical"

android:fillViewport="true">

<GridViewandroid:id="@+id/grid"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:horizontalSpacing="10dp"

android:numColumns="3"

android:paddingBottom="10dp"

android:paddingTop="10dp"

android:verticalSpacing="10dp">

</GridView>

</ScrollView>

여기서 이부분 위 android:layout_weigh =0.15 부분은 버튼이랑 text로 꾸며놨고 

그아래부분만 여러 사진들을 100장정도 보여주려고 하는데 스크롤이 내려가지를 않네요 ㅠ

<!--[if !supportEmptyParas]--> <!--[endif]-->

하하하호홍 (190 포인트) 님이 2017년 7월 10일 질문

1개의 답변

0 추천

GridView가 ScrollView역할도 하는데, ScrollView를 빼보시는건 어떠세요?

디자이너정 (42,810 포인트) 님이 2017년 7월 10일 답변
...