Notice
Recent Posts
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 | 31 |
Tags
- permission
- Anko SQLite
- Anro Coroutines
- LinearLayout
- ViewGroup
- Retrofit2
- intent
- react
- 안드로이드
- Git
- cardview
- RecyclerView
- .kt
- ReactDOM
- http
- ConstraintLayout
- android
- RelativeLayout
- Eclipse
- java
- Kotlin
- javascript
- block scope
- function scope
- layout
- linux
- props
- vim
- view
- component
Archives
- Today
- Total
목록ProgressDialog (1)
이것저것 다 개발
가장 기본적인 ProgressDialog를 만들어 사용해보겠습니다. 먼저 progressDialog를 생성한 후 Message, Cancelable, ProgressStyle를 작성하겠습니다. ProgressDialog 생성 ProgressDialog progressDialog = new ProgressDialog(this); progressDialog.setMessage("ProgressDialog running..."); progressDialog.setCancelable(true); progressDialog.setProgressStyle(android.R.style.Widget_ProgressBar_Horizontal); setMessage() : ProgressDialog에 들어갈 메시지를 작성..
Android
2018. 7. 13. 22:00