정렬(8)
-
LinearLayoutDemo2-Gravity, android:gravity로 버튼의 위치 지정하기
android:gravity로 버튼의 위치 지정하기 android:gravity 자신 내부의 구성요소의 위치 정의 레이아웃에 명시해서 View의 위치 지정 (일반적, 레이아웃에 명시해서 view(Button, TextView)를 제어) 버튼에 명시해 버튼 내의 text의 위치 지정 android:layout_gravity 부모를 기준으로 자신의 위치 지정 view(Button, TextView)에 명시해서 레이아웃 기준으로 View가 배치되는 위치 지정 중앙정렬 속성값: center 정중앙 center_vertical 좌측 중앙 center_horizental 상단 중앙 강의 내용 activity_main.xml LinearLayout 변경 Graphical Layout > Form Widgets-But..
-
LinearLayoutDemo-LinearLayout - 수직/수직 정렬(orientation)
LinearLayout - 수직/수직 정렬(orientation) 강의 내용 LinearLayout으로 부모 컨테이너 변경 > orientation 버튼1, 버튼2 추가하여 수직 정렬 확인 LinearLayout추가 버튼3, 버튼4 추가하여 수평 정령 (하나만 match_parent) 버튼3, 버튼4 모두 같은 크기 비율로 맞춰보기(모두 wrap_content/layout_weight="1") 버튼1을 layout_height="wrap_content" 직접 xml 코딩하면서 테스트 activity_main.xml LinearLayout변경 -android:orientation="vertical" -Graphical Layout > Form Widgets-Button추가 1 -Graphical Layou..