문제
같은 bottom sheet임에도 불구하고, recyclerView의 아이템이 많아지면 상단의 텍스트뷰 화면을 초과하여 짤리는 상황
해결
layout_height를 0dp로 준 뒤, constraintHeight_default="wrap" 속성을 추가해줬다.
= app:layout_constraintHeight_default="wrap" 속성은 기본적으로 wrap_content 높이를 사용하겠다는 의미
-> 리사이클러뷰가 확장되더라도 높이가 동적으로 결정된다!!
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/shp_bottom_sheet">
<TextView
android:id="@+id/tv_label_filter_type"
style="@style/AppTextTitle.S16"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:gravity="center"
app:layout_constraintBottom_toTopOf="@id/rv_filtered_list"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_chainStyle="spread_inside"
tools:text="지역" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_filtered_list"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginTop="15dp"
android:orientation="vertical"
android:scrollbars="vertical"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/tv_label_filter_type"
app:layout_constraintHeight_default="wrap"
tools:itemCount="20"
tools:listitem="@layout/item_filtered" />
</androidx.constraintlayout.widget.ConstraintLayout>
추가로 !
리사이클러뷰를 구현할때에는 itemCount의 개수를 충분히 설정하는 것을 잊지말아야겠다. itemCount 값을 작게 설정해 놓고 디자인된 화면은 정상인데 왜 item의 개수가 많아지면 짤리는지 계속 고민했었다...
'안드로이드 프로그래밍 > 트러블슈팅' 카테고리의 다른 글
[트러블 슈팅] Android 12 : 정확한 알람 권한 , 시스템에서 자동으로 권한을 부여하는 경우 (0) | 2024.09.23 |
---|---|
[트러블 슈팅] AlarmManager (1) | 2024.09.19 |
[트러블슈팅] ScrollView와 RecyclerView의 충돌 -> NestedScrollView (0) | 2024.08.27 |