간혹 XML에서 왼쪽과 오른쪽에 객체를 배치하고싶을때가 있을때 그럴때는 중앙에 View를 아래와같이 넣어놓으면 된다.
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1"/>
<Button
android:layout_height="match_parent"
android:layout_width="wrap_content"/>
</LinearLayout>
'프로그래밍 > Android' 카테고리의 다른 글
[Kotlin] 코드 실행시간 측정 (0) | 2022.12.06 |
---|---|
[Android] 중복클릭 막기 (0) | 2022.12.02 |
[Android] 앱 출시후 자동업데이트 (0) | 2022.11.09 |
[Android] 특정 이벤트 발생시 행동(브로드캐스트) (0) | 2022.10.11 |
[Android] URL을 이용해 이미지 띄우기 (0) | 2022.10.07 |
댓글