Custom Dialog

|
  1. CustomDialog customDialog = new CustomDialog(this);
  2. customDialog.show();

  3. public class CustomDialog extends Dialog{
  4. public CustomDialog(Context context) {
  5. super(context);

  6. requestWindowFeature(Window.FEATURE_NO_TITLE); // 타이틀 삭제
  7. setCancelable(false); // 취소 불가능
  8. setContentView(R.layout.dialog_blockmessage); // 레이아웃 불러오기
  9. }
  10. }

'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
And