안드로이드 앱 개발중 scrollview로 전체를 감싸고 안에 recyclerview로 보여줄 때가 있습니다. 여기서 문제가 발생할 수 있는데 스크롤뷰 안에 있는 recyclerview가 개별적으로 스크롤이 되는 현상입니다.
이 부분을 해결해 줄 수 있는 소스가 있습니다. 아래 소스처럼 NestedScrollView를 사용하면 해결할 수 있습니다. fillViewport ="true" 로 설정해주세요.
<androidx.core.widget.NestedScrollView
android:id="@+id/bio_scroll"
android:fillViewport="true"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- recyclerview -->
</LinearLayout>
</androidx.core.widget.NestedScrollView>
반응형
그리드형
'IT > Android' 카테고리의 다른 글
[Android] INSTALL_PARSE_FAILED_MANIFEST_MALFORMED 오류 해결방법 (1) | 2024.01.08 |
---|---|
[Andorid] Host name may not be empty (0) | 2022.10.11 |
[Android] 카카오 API를 이용한 디버그, 릴리즈 키 해쉬 구하기 (0) | 2022.07.28 |
[Android] This project uses AndroidX dependencies, but the 'android.useAndroidX' (0) | 2022.07.25 |
[Android] 구글 플레이 콘솔 com.google.android.gms:play-services-safetynet 해결 방법 (3) | 2022.07.12 |
[Android] ScrollView can host only one direct child (0) | 2022.07.09 |
[Android] app:uploadCrashlyticsMappingFileRelease FAILED 해결 방법 (0) | 2022.06.21 |
[Android] 블루스택으로 기기 테스트 하는 방법 (0) | 2021.07.30 |