안드로이드 LinearLayout 오른쪽 정렬하기, 왼쪽 정렬하기
layout_gravity="left" 왼쪽정렬
layout_gravity ="right" 오른쪽 정렬
다음 예제를 따라해보시면 됩니다.
<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_image" />
'기타 ETC > Android Studio' 카테고리의 다른 글
[Android] youtube link open (0) | 2020.07.07 |
---|---|
It is simpler when you have a lot of image buttons, and you don't want to write xml-s for every button. (0) | 2020.07.06 |
안드로이드 사운드 재생 방법 및 버튼 색깔 바꾸기입니다. (0) | 2020.06.24 |
안드로이드 앱: 국기 맞추기 퀴즈 앱 만들기 소스코드 (0) | 2020.06.24 |
안드로이드 형 변환하기 (0) | 2020.03.27 |