-
ConstraintLayout에서 match_parent 가 작동 안될경우Android 2020. 9. 21. 12:17반응형
ConstraintLayout 안에 있는 View 에 match_parent를 적용할경우 꽉차게 적용이 안되는 경우가 있습니다.
그럴경우 android:layout_width 와 android:layout_height 를 0dp 로 주고
app:layout_constraintStart_toStartOf ,app:layout_constraintTop_toTopOf, app:layout_constraintBottom_toBottomOf, app:layout_constraintEnd_toEndOf 를 "parent" 로 주면 비어는 View 도 ConstraintLayout에 꽉차게 들어가게 됩니다.
<androidx.constraintlayout.widget.ConstraintLayout android:layout_width="wrap_content" android:layout_height="20dp"> <RelativeLayout android:layout_width="0dp" android:layout_height="0dp" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" /> </androidx.constraintlayout.widget.ConstraintLayout>
반응형'Android' 카테고리의 다른 글
Android Notifications(알림) 표시 (0) 2021.03.14 [안드로이드] Intent로 이미지 가져오기 (0) 2021.03.06 Android TextView URL link 처리하기 (0) 2020.12.28 Gson v 2.8.6 공식 번역본 (0) 2020.10.14 Hilt 공식 문서 번역본 (0) 2020.07.24 android Resources.getSystem() mocking 처리 (0) 2020.07.15 Android11: The Beta Launch Show (0) 2020.06.04 Android APK 파일 서명 (with. Apk Sign) (0) 2020.02.10