- CustomDialog customDialog = new CustomDialog(this);
- customDialog.show();
- public class CustomDialog extends Dialog{
- public CustomDialog(Context context) {
- super(context);
- requestWindowFeature(Window.FEATURE_NO_TITLE); // 타이틀 삭제
- setCancelable(false); // 취소 불가능
- setContentView(R.layout.dialog_blockmessage); // 레이아웃 불러오기
- }
- }
'Android' 카테고리의 다른 글
Custom Dialog 주소록 정보 출력 (0) | 2011.02.08 |
---|---|
주소록 정보 (0) | 2011.02.01 |
SMS 정보 (0) | 2011.02.01 |
content://sms/ 필드명 (0) | 2011.02.01 |
db 호출용 class (0) | 2011.02.01 |