일반적으로
Toast(토스트) 메세지는 꼭 볼 필요 없는 메세지를 전달할때 사용하고
Alert (경고창)은 무조건 보여주어야 하는 메세지를 전달할때 사용한다
Progress Dialog는 어떠한 데이터를 가지고 오는데 사용
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <Button android:id="@+id/alert" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="경고창 띄우기" /> <Button android:id="@+id/toast" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Toast 표시" /> <Button android:id="@+id/progress" android:text="ProgressDialog 표시" android:layout_width="fill_parent" android:layout_height="wrap_content" /> </LinearLayout>
package com.commonsware.android.messages; import android.app.Activity; import android.app.AlertDialog; import android.app.ProgressDialog; import android.content.DialogInterface; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.Toast; public class MessageDemo extends Activity implements View.OnClickListener{ Button alert, toast, progress; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); alert=(Button)findViewById(R.id.alert); alert.setOnClickListener(this); toast=(Button)findViewById(R.id.toast); toast.setOnClickListener(this); progress=(Button)findViewById(R.id.progress); progress.setOnClickListener(this); } public void onClick(View view){ if(view==alert){ new AlertDialog.Builder(this) .setTitle("에헴...") .setMessage("뭘봐?") .setNeutralButton("닫기",new DialogInterface.OnClickListener() { public void onClick(DialogInterface dlg, int sumthin) { // 기본적으로 창은 닫히고 추가 작업은 없다(닫히면서 행해지는 것) } }) .show(); } else if(view==toast){ Toast .makeText(this,"토스트 메세지",Toast.LENGTH_SHORT) .show(); }else{ final ProgressDialog dialog = //Context context : 실행중인 Activity객체 //CharSequence title : 제목 //CharSequence message : 메세지 //boolean indeterminate : 원형 아이콘 또는 막대형태의 아이콘의 실행을 //유한/무한으로 지정할때 사용하는데 , 원형 아이콘일 경우는 무한만 설정됨 //막대형태의 아이콘일만 유한/무한 설정 가능 ProgressDialog.show(this,"사이트 접속중"," 잠시만 기다려 주세요^,.^",true); //익명내부 클래스 형태의 스레드 생성 new Thread(){ public void run(){ try{ sleep(3000); }catch(InterruptedException e){ e.printStackTrace(); } //찾기 중지 dialog.dismiss(); } }.start(); } } }
'Android > 기본' 카테고리의 다른 글
Handler 사용하기 (로딩 표시?) (0) | 2012.04.28 |
---|---|
Activity 생명주기 (0) | 2012.04.28 |
ConText Menu 메뉴 (길게 터치시 팝업메뉴) (0) | 2012.04.28 |
Menu Xml (새로운 xml 파일 만들어 연결하기) 인플레이션 (0) | 2012.04.28 |
메뉴 Menu (0) | 2012.04.28 |