안드로이드 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" />

 

 

+ Recent posts