반응형
위에서부터 차례대로 보시면 됩니다.
<?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:orientation="vertical">
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="CheckBox"
android:textAppearance="?android:textAppearance" />
<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginLeft="10dp">
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="yes"
android:textAppearance="?android:textAppearance"/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="no"
android:textAppearance="?android:textAppearance"/>
</RadioGroup>
<RatingBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:numStars="5"
android:rating="3"
android:stepSize="0.5"
style="?android:ratingBarStyleIndicator"/>
<Switch
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<SeekBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:max="100"
android:progress="30"/>
<SearchView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:iconifiedByDefault="false"
android:queryHint="Search"/>
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/Widget.AppCompat.ProgressBar"/>
<ProgressBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/Widget.AppCompat.ProgressBar.Horizontal"
android:max="100"
android:progress="50"
android:indeterminate="false"/>
</LinearLayout>
반응형
'이모저모' 카테고리의 다른 글
각 프로그래밍 언어별 코드 작성 스타일 가이드 (0) | 2020.06.18 |
---|---|
[Android] scaleType 속성 (0) | 2020.06.05 |
[Android] inputType 속성 (0) | 2020.06.05 |
[Android] Android 이모저모 (2020-06-05) (0) | 2020.06.05 |