간단한 popup창을 보여줌
Dialog dlg = new Dialog(context);
dlg.setTitle(context.getResources().getString(R.string.notsupport));
dlg.setCanceledOnTouchOutside(true); // dialog 바깥쪽 클릭하면 사라짐
dlg.show();
Dialog dlg = new Dialog(context);
dlg.setTitle(context.getResources().getString(R.string.notsupport));
dlg.setCanceledOnTouchOutside(true); // dialog 바깥쪽 클릭하면 사라짐
dlg.show();
'android programming' 카테고리의 다른 글
문자코드변환 (0) | 2010.03.04 |
---|---|
커스텀 리스트뷰 다이얼로그에 컨텍스트메뉴리스너 달기.. (0) | 2010.03.04 |
가상키패드 (0) | 2010.01.24 |
Context? (0) | 2010.01.24 |
View, SurfaceView? (0) | 2009.12.11 |