1. 호출하는 위치에 작성
1
2
|
showDialog(value); //value 에숫자를 지정
}
|
2. 실행부분 함수 작성
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
private Dialog onCreateDialog(int id){
switch(id){
case 0:
return new AlertDialog.Builder(callclass.this)
.setTitle("String need")
.setMessage("Your need steam?")
.setPositiveButton("Yes", new DialogInterface.OnClickListener(){
public void onClick(DialogInterface dialog.int value){
run process;
}
}).setNegativeButton("No", new DialogInterface.OnClickListener(){
public void onClick(DialogInterface dialog.int value){
run process;
}
}).create();
//you can case add
default:
{
break;
}
}
return null;
}
|
댓글 없음:
댓글 쓰기