[Toast #1] Toast 기본 출력.

Posted by [하늘이]
2010. 12. 16. 17:20 IT/Android[안드로이드]
반응형
간단한 내용을 잠시 보여주는 것으로 많이 사용하는 Toast 기본 적인 사용법입니다.

좀 간단해서 코드보면 설명이 별로 필요 없죠.

뭐 가지고 있던 코드중에 에러 내용을 보여줄때 코드를 가져왔습니다.
........
@Override
protected void onResume() {
super.onResume();
if(intListLoadPath() == false){
Toast.makeText(mContext, mContext.getString(R.string.ListEmpty),
Toast.LENGTH_SHORT).show();
}
........

Developer Class : Toast
static Toast makeText(Context context, int resId, int duration)
Make a standard toast that just contains a text view with the text from a resource.
static Toast makeText(Context context, CharSequence text, int duration)
Make a standard toast that just contains a text view.
void show()
Show the view for the specified duration.
위 Class 메소드 정보 보면, 인자들 쉽게 아시겠죠..^^







반응형