private void showAlertDialog() {
AlertDialog.Builder ad = new AlertDialog.Builder(MtnTvLive.this);
String title = "알림";
String message = "현재 준비중입니다.";
ad.setTitle(title);
ad.setMessage(message);
ad.setPositiveButton("YES", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
}
});
ad.show();
}
'개발도구 > aOS - 안드로이드 개발' 카테고리의 다른 글
[안드로이드] 안드로이드 아이콘 만들기 (0) | 2012.12.10 |
---|---|
[안드로이드] ArrayList<FrameLayout> , Activity 의 형변환 (0) | 2012.02.29 |
[안드로이드] 실제 샘플 예제 (0) | 2012.02.27 |
[Android]액티비티 생명주기 과 intent action (1) | 2012.02.27 |
[안드로이드] onResume, onPause, onStart, onStop, onCreate (0) | 2012.02.24 |