-
직접 풀어보기 4-2Android Studio를 활용한 안드로이드프로그래밍 9판 2024. 5. 3. 01:19
메인은 없음 레이아웃만 존재
<?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" tools:context=".MainActivity" android:padding="20dp" android:orientation="vertical"> <Button android:layout_width="match_parent" android:layout_height="30dp" android:text="버튼 1" android:background="#009900" android:layout_margin="10dp"/> <TextView android:layout_width="match_parent" android:layout_height="100dp" android:text="이건 텍스트뷰입니다." android:layout_margin="10dp" android:gravity="left|center"/> <EditText android:layout_width="match_parent" android:layout_height="30dp" android:text="이건 에디트텍스트입니다." android:layout_margin="10dp" android:background="#0019f4"/> <Button android:layout_width="100dp" android:layout_height="match_parent" android:text="버튼 2" android:layout_margin="10dp"/> </LinearLayout>
'Android Studio를 활용한 안드로이드프로그래밍 9판' 카테고리의 다른 글
여행지 소개 및 경비 안내 어 (2) 2024.06.14 직접 풀어보기 5-2 (0) 2024.05.03 실습 4-2 (시작함 누르고 동물 사진 나오게 하는 거) (0) 2024.05.03