Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- studywithme
- Popup menu background color
- gradle plugin
- Navigation
- WorkManager
- log
- kotlin
- http
- Lifecycle
- 화면 회전
- NumberPIcker
- ThreeTen Backport
- 기기고유값
- findNavController
- SSAID
- Load failed
- RecyclerView
- DataBinding
- todo
- multipart
- Retrofit2
- DialogFragment
- Room
- Android
- 생명주기
- layout_constrainedWidth
- Collections Function
- layout_constrainedHeight
- json
- BottomSheetDialogFragment
Archives
- Today
- Total
chacha's
🚧 layout_constrainedHeight/Width로 가변 길이 설정하기 본문
ConstraintLayout을 사용할 때 layout_height = "wrap_content"로 지정하면 제약 조건에 맞게 알아서 설정될 줄 알았다. 하지만 아이템의 개수가 많아지면 버튼 아래 쪽으로 뷰가 넘어가는 문제가 발생하였습니다.
<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="match_parent"
android:background="@color/black">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/url_music_chord_container"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:layout_marginBottom="32dp"
android:background="@drawable/bg_url_chord_rv"
app:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
app:layout_constraintBottom_toTopOf="@+id/url_music_play_btn"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0"
app:spanCount="4"
tools:itemCount="12"
tools:listitem="@layout/item_url_chord" />
<Button
android:id="@+id/url_music_play_btn"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_marginBottom="32dp"
android:background="@null"
android:text="ok"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
이 경우, layout_constrainedHeight="true"
속성을 사용하면 제약조건에 맞게 뷰가 넘어가지 않는 것을 확인할 수 있습니다.
<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="match_parent"
android:background="@color/black">
<androidx.recyclerview.widget.RecyclerView
...
app:layout_constrainedHeight="true"
... />
<Button
... />
</androidx.constraintlayout.widget.ConstraintLayout>
📌 RecyclerView 외에도 TextView와 같이 길이가 변하는 뷰를 설정할 때, app:layout_constrainedWidth=”true”
, app:layout_constrainedHeight=”true”
속성을 사용하여 제약조건에 맞게 뷰를 설정할 수 있습니다.
END
'Android > TIL' 카테고리의 다른 글
🆔 Android 기기 고유 값 사용하기 (2) | 2021.11.08 |
---|---|
📁 Dialog Fragment 이것 저것 (0) | 2021.09.30 |
Gson을 이용하여 Assets에 있는 JSON 파일 읽기 (0) | 2021.08.09 |
🕶 Glide 이용할 때 Http URL 사용 시 화면 안 보임 (0) | 2021.08.07 |
🔀 Dialog에서 findNavController 접근 못 하는 문제 (0) | 2021.06.16 |
Comments