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
- string
- pandas
- numpy
- 덴드로그램
- len()
- del
- Python
- dendrogram
- Dictionary
- 반복문
- IN
- hierarchical_clustering
- count()
- insert()
- elbow method
- wcss
- nan
- matplotlib
- function
- sklearn
- 최댓값
- DataAccess
- append()
- 최솟값
- analizer
- 분류 결과표
- data
- Machine Learning
- list
- DataFrame
Archives
- Today
- Total
개발공부
[Android] Progress Dialog 프로그레스 다이얼로그 생성/제거 본문
변수 선언
// 네트워크 처리 보여주는 프로그레스 다이얼로그
ProgressDialog dialog;
함수 정의
void showProgress(String message){
dialog = new ProgressDialog(this);
dialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
dialog.setMessage(message);
dialog.show();
}
void dismissProgress(){
dialog.dismiss();
}
사용하기
생성
showProgress("보여줄 텍스트");
제거
dismissProgress();
'Android' 카테고리의 다른 글
| [Android] GPS 위도, 경도 정보 받기, 권한 설정 (0) | 2022.07.29 |
|---|---|
| [Android] Retrofit2 라이브러리 form-data 형식 파일, 텍스트 전송하기(Multipart form 이용) (0) | 2022.07.26 |
| [Android] Retrofit2 라이브러리를 이용한 POST로 API 호출하여 처리하는 방법 (0) | 2022.07.21 |
| [Android] Retrofit2 라이브러리 사용을 위한 설정 방법 (0) | 2022.07.21 |
| [Android] 카메라 / 앨범 처리 (0) | 2022.07.21 |