일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 깃허브
- 개발자
- GitHub
- 별5개
- Android
- 오류해결
- 1박2일
- 자바
- 3박4일
- Git
- 도쿄
- Eclipse
- 안드로이드스튜디오
- android studio
- 안드로이드
- 공부
- error
- 코틀린
- 오라클
- 재밌당
- 자바스크립트
- AndroidStudio
- 리눅스
- db
- Java
- kotlin
- 개발
- 친구랑
- JavaScript
- oracle
- 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 |