1)activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<!-- 버튼이 세로로 배치 -->
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="첫번째버튼"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="두번째버튼"/>
<!-- 버튼을 가로로 배치 -->
<!-- android:orientation을 명시하지 않으면 기본적으로 horizontal로 인식 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="세번째버튼"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="네번째버튼"/>
</LinearLayout>
</LinearLayout>
android:orientation은 뷰를 배치하는 방향
세로 : vertical, 가로 : horizontal
2)실행
반응형
'IT > Java Spring' 카테고리의 다른 글
Android Studio s09LinearLayoutDemo02 (0) | 2020.07.01 |
---|---|
ch10.SpringMVC 종합 22.데이터베이스 오라클 연동 (아마테라스) (0) | 2020.06.30 |
ch10.SpringMVC 종합 21.글삭제 (0) | 2020.06.30 |
ch10.SpringMVC 종합 20.글수정 (0) | 2020.06.29 |
ch10.SpringMVC 종합 19.인터셉터(로그인 여부 체크) (0) | 2020.06.29 |