728x90
반응형
💡애뮬레이터 설치
🔸id 속성
◾ 추후 ListView를 사용할 때 @android:를 사용할 것이다.
📃<Button> 예제
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btn_ok"
android:text="OK"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btn_cancel"
android:text="Cancel"
/>
</LinearLayout>
📃<CheckBox> 예제
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="효과음 사용"
/>
</LinearLayout>
📃<RadioButton> 예제
◾ <RadioGroup>안에 <RadioButton>들이 있다.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/radiogroup"
>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/radio_red"
android:text="red"
android:checked="true"
/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/radio_green"
android:text="green"
/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/radio_blue"
android:text="blue"
/>
</RadioGroup>
</LinearLayout>
728x90
반응형
'App > Android Studio' 카테고리의 다른 글
Android Studio - GridLayout (0) | 2022.08.02 |
---|---|
Android Studio - RelativeLayout (0) | 2022.08.02 |
Android Studio - LinearLayout (0) | 2022.08.02 |
Android Studio - xml과 자바 (0) | 2022.08.02 |
Android Studio - 안드로이드 어플리케이션 기본과 UI (0) | 2022.08.01 |
댓글