We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs : https://developer.android.com/reference/kotlin/androidx/constraintlayout/widget/ConstraintLayout
ConstraintLayout은 보기의 위치를 정의하기 위해 다른 보기, 상위 레이아웃 또는 표시되지 않는 안내선을 기준으로한 정렬 또는 연결을 나타내는 레이아웃이다.
Layout마다 특성이 있으므로, 만들려는 화면이 어떤 특성을 가지고 있고 어떤 Layout으로 만드는 것이 좋을지 개발 난이도, 시간, 편의성 등을 생각하면 좋을 듯 하다.
대부분의 화면을 개발하는 경우 사용하기 편하고 성능도 좋기 때문이다. ConstraintLayout은 구글이 현재 권장하는 레이아웃이며 기본 템플릿이다.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
1. ConstraintLayout의 주요 특징을 학습하고 정리해주세요.
docs : https://developer.android.com/reference/kotlin/androidx/constraintlayout/widget/ConstraintLayout
ConstraintLayout은 보기의 위치를 정의하기 위해 다른 보기, 상위 레이아웃 또는 표시되지 않는 안내선을 기준으로한 정렬 또는 연결을 나타내는 레이아웃이다.
2. XML에서 활용할 수 있는 Layout은 LinearLayout, RelativeLayout 등 여러 종류가 있습니다. Layout을 선택하는 기준과 현재는 ConstraintLayout으로 대체가 된 이유를 함께 설명해주세요.
Layout 선택 기준
Layout마다 특성이 있으므로, 만들려는 화면이 어떤 특성을 가지고 있고 어떤 Layout으로 만드는 것이 좋을지 개발 난이도, 시간, 편의성 등을 생각하면 좋을 듯 하다.
ConstraintLayout으로 대체된 이유
대부분의 화면을 개발하는 경우 사용하기 편하고 성능도 좋기 때문이다. ConstraintLayout은 구글이 현재 권장하는 레이아웃이며 기본 템플릿이다.
The text was updated successfully, but these errors were encountered: