[Toast #1] Toast 기본 출력.
반응형
간단한 내용을 잠시 보여주는 것으로 많이 사용하는 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
Make a standard toast that just contains a text view with the text from a resource.
| |
Make a standard toast that just contains a text view.
|
Show the view for the specified duration.
|
위 Class 메소드 정보 보면, 인자들 쉽게 아시겠죠..^^
반응형
'IT > Android[안드로이드]' 카테고리의 다른 글
[Android 환경 설정 #4] Eclips에 Android SDK를 설정하는 방법 (6) | 2010.12.19 |
---|---|
[Toast #2] How to close the Toast Msg. (0) | 2010.12.16 |
[Filename Sort] File 리스트를 불러와 이름순으로 Sort시키기 (0) | 2010.12.16 |
[Menu #3] Context Menu를 ListView에 연결시 Position가져오기. (2) | 2010.12.15 |
[Menu #2] 컨텍스트 메뉴 기본 구성하기 (0) | 2010.12.15 |