일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Eclipse
- AndroidStudio
- 오류해결
- kotlin
- Java
- 친구랑
- GitHub
- 깃허브
- Android
- 코틀린
- 재밌당
- oracle
- 안드로이드
- 안드로이드스튜디오
- 자바스크립트
- 자바
- android studio
- 1박2일
- db
- 공부
- 도쿄
- 개발자
- Git
- 별5개
- 3박4일
- JavaScript
- error
- 리눅스
- 개발
- 오라클
- Today
- Total
dev_eunz
[LinearLayout] 오른쪽 정렬하기.! 본문
[LinearLayout] 을 사용하던 중,
아래의 그림처럼 Text는 왼쪽, ImageButton은 가장 오른쪽으로 두고 싶은 상황이 생겼다.
이런 때에
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"
/>
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:src="@drawable/ic_menu_camera" />
이런 코드를 생각하겠지만, 내가 원하던대로 나오지 않는다.😭
아래의 그림처럼 나올뿐.!!
이런 때에,
TextView, ImgeButton 사이에 View를 집어넣으면 원하는 모양으로 나온다.!
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left" />
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:src="@drawable/ic_menu_camera" />
이렇게.! 이렇게 하면 원하는대로 나온다.🤗 👏👏👏!!!
'IT > Tip' 카테고리의 다른 글
[Android] ConstraintLayout 주의사항.! (0) | 2017.11.17 |
---|---|
Android 텍스트 가운데정렬(수직)하기 (2) | 2017.11.16 |