안드로이드 개발 질문/답변
(글 수 45,052)
프로그레스바 다이얼로그에서는
버튼 형식이
Progress.setButton("확인", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
}
});
이런 형식으로 되어있더라구요 그런데
버튼 형식이 객체가 아니고 기본적으로 프로그레스바에서 진행해주는 함수를 이용해서 생성하는것이기 때문에
뭐 enable 혹은 disable 하는 기능을 찾기 힘들더라구요
프로그레스바 다이얼로그에서 버튼을 활성화 비활성화 시킬수 있는 방법 아시는 분 혹시 계신가요 ㅠㅠ
//Progress.setButton("확인", new DialogInterface.OnClickListener() {
// public void onClick(DialogInterface dialog, int which) {
// }
// });