Bar :ProgressBar,SeekBar,RatingBar
2019. 3. 19. 14:44ㆍAndriod
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <ProgressBar style="?android:attr/progressBarStyleHorizontal" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="20dp" android:max="100" android:progress="20" android:secondaryProgress="50"/> <SeekBar android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="20dp" android:progress="20" /> <RatingBar android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="20dp" android:numStars="5" android:rating="1.5" android:stepSize="0.5"/> </LinearLayout> | cs |
'Andriod' 카테고리의 다른 글
간단한 브라우저 만들기 (0) | 2019.03.19 |
---|---|
TapHost : 탭호스트 화면전환 (0) | 2019.03.19 |
ViewFlipper : 화면 전환 (0) | 2019.03.19 |
자동완성텍스트뷰,멀티자동완성테스트뷰 (0) | 2019.03.19 |
CalendarView,TimePicker 사용예제: 선택된 날짜 표시하기 (0) | 2019.03.19 |