일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 파이어베이스
- ListAdapter
- 회원가입
- MVVM
- sharedFlow
- XML
- 코틀린
- 뷰
- 리사이클러뷰
- cleanarchitecture
- DiffUtil
- 로그인
- Authentication
- Compose
- 코딩테스트
- 클린아키텍처
- Android
- 안드로이드
- NavController
- UiState
- 컴포즈
- Flow
- 알고리즘
- coroutine
- 플레이스토어
- Build variants
- 커스텀뷰
- Kotlin
- Jetpack
- NavHost
- Today
- Total
Grusie 안드로이드 개발 기술 블로그
[Android] 정사각형 뷰 만들기 커스텀뷰, constraint layout_constraintDimensionRatio 속성 본문
[Android] 정사각형 뷰 만들기 커스텀뷰, constraint layout_constraintDimensionRatio 속성
grusie 2024. 4. 9. 10:35정사각형 뷰를 정해진 갯수만큼 그리디하게 뿌려주는 것을 구현하면서 생긴 고민이다.
기존에는 정사각형 뷰가 필요했을 때는 커스텀 레이아웃을 만들어서 구현하였다.
물론 이 방법이 나쁘다는 것은 아니지만, 뷰는 가능한 xml 상에서 다 할 수 있었으면 좋겠다고 생각하였기에, 고민하던 중 constraintDimensionRatio 속성을 찾게 되었다.
기존 커스텀뷰
class SquareLayout : ConstraintLayout {
constructor(context: Context?) : super(context!!) {}
constructor(context: Context?, attrs: AttributeSet?) : super(
context!!, attrs
) {
}
constructor(context: Context?, attrs: AttributeSet?, defStyle: Int) : super(
context!!, attrs, defStyle
) {
}
public override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) {
super.onMeasure(widthMeasureSpec, widthMeasureSpec)
//width와 height를 동일하게 만든다.
}
}
이런식으로 커스텀뷰를 구현하여 사용하였으나, GridView의 columnWeight를 적용했을 때 이상하게 동작하는 현상도 발견되었고, 가능하면 xml에서 구현하고 싶었다.
app:layout_constraintDimensionRatio
app:layout_constraintDimensionRatio
ConstraintLayout에 존재하는 속성이다.
뷰의 가로/세로 비율을 결정하는 속성으로, 1:1비율로 만들어 주면 원하는대로 사용이 가능할 것이다.
사용하기 위해선 적어도 한 방향이 match_constraint 이어야 하며, 만약 두 방향 모두 match_constraint 라면, 큰 쪽에 따라간다.
실제 코드
새로운 레이아웃 파일을 만들어서 app:layout_constraintDimensionRatio을 사용한다.
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.cardview.widget.CardView
app:cardCornerRadius="15dp"
app:cardElevation="0dp"
app:layout_constraintDimensionRatio="1:1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintTop_toTopOf="parent"
android:foreground="?android:attr/selectableItemBackground">
<ImageView
android:id="@+id/iv_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop" />
</androidx.cardview.widget.CardView>
...
</androidx.constraintlayout.widget.ConstraintLayout>
ConstraintLayout 하위에 있는 CardView에 app:layout_constraintDimensionRatio="1:1"을 입력하여, 1대 1 비율의 뷰를 만들었다. width와 height를 0dp로 주고, 제약을 주어 match_constraint를 적용해두었다.
<GridLayout
android:id="@+id/gl_scrap"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/activity_vertical_margin"
android:columnCount="2"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/iv_btn_scrap_more">
<include
layout="@layout/item_vrog_story_scrap"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_marginEnd="5dp"
android:layout_marginBottom="5dp"
android:visibility="gone" />
<include
layout="@layout/item_vrog_story_scrap"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_marginBottom="5dp"
android:visibility="gone" />
<include
layout="@layout/item_vrog_story_scrap"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_marginEnd="5dp"
android:visibility="gone" />
<include
layout="@layout/item_vrog_story_scrap"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:visibility="gone" />
</GridLayout>
필요한 곳에서 include 속성으로 사용할 수 있다. 필자는 GridLayout에 사용하였으며, columnCount의 제한을 주고, 크기를 동일하게 가져가기 위해, columnWeight 속성을 추가하였다.
원하는 모양대로 잘 나오는 것을 확인 할 수 있다.
참고
https://blog.yena.io/studynote/2017/12/09/Android-Kotlin-GridItem-Layout.html
후기
스크롤이 필요 없고, 리사이클 되지 않기 때문에 리사이클러뷰를 활용하지 않았다.
정사각형 뷰를 만들기 위한 고민을 이렇게까지 해야하는가에 대한 생각을 늘 했다. 커스텀뷰보다 간단한 속성이 있었기에 다행이라고 생각한다. 컴포즈로 활용했다면 훨씬 간단했을까 하는 생각을 한다.
'안드로이드 개발 > 뷰' 카테고리의 다른 글
[Android] 이미지 축소 확대, 회전 커스텀 뷰 만들기 (feat. 터치 이벤트 종류, 각도 함수) (0) | 2024.04.24 |
---|---|
[Android] BottomSheetDialogFragment 사용하기 (+ 둥근 모서리) (0) | 2024.04.18 |
[Android] RecyclerView, ItemDecoration으로 마진 조절하기 (0) | 2024.04.11 |
[Android] Fragment를 newInstance()로 생성해야 하는 이유 (0) | 2024.04.02 |
[Android] lifeCycleScope.launchedWhenCreated, Started, Resumed 대체(deprecated) (0) | 2024.03.26 |