Notice
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
Tags
- spinner
- 조이스틱
- DP
- 스피너
- 레이아웃
- camera
- ListvView
- 그래들
- GPS
- Round Square
- Unity
- 유니티
- Handelr
- webcam
- 안드로이드
- Ext
- layout
- 리스트뷰
- gradle
- Android
- bottom
- GlobalComponent
- WebCamTexture
- UI
Archives
- Today
- Total
JY-Dev Tech Blog
안드로이드(Android) - infinite circuler progressbar 본문
[OverView]
이번에는 무한히 도는 Progressbar를 생성하는 방법에 대해 알아보겠습니다.
간단하게 xml에서 선언 해주시기만 하면 완성입니다.
[XML]
<ProgressBar
android:id="@+id/progress"
style="?android:attr/progressBarStyle"
android:layout_width="wrap_content"
android:layout_centerInParent="true"
android:visibility="gone"
android:layout_height="wrap_content"
android:indeterminateDuration="1000"/>
indeterminateDuration - 몇초간격으로 반복할지 설정
'안드로이드 > 레이아웃' 카테고리의 다른 글
안드로이드(Android) - RelativeLayout set LayoutParams Programmatically (마진값 코드상으로 변경하는법 , LayoutParams 설정법) (0) | 2020.10.12 |
---|---|
안드로이드(Android) - font 적용시키기 (0) | 2020.10.08 |
안드로이드(Android) - Drawable Shape Color Change (0) | 2020.09.07 |
안드로이드(Android) - SearchView TextStyle 변경 (0) | 2020.08.14 |
안드로이드(Android) - Custom Spinner 만들기 (0) | 2020.08.07 |
Comments