toast提示是Android系統中一種訊息框類型,一種簡易的訊息提示框,是Android中用來顯示提示訊息的一種機制;Toast類別的想法就是盡可能不引人注意,同時也向使用者顯示訊息。
本文操作環境:Windows7系統、Dell G3電腦。
android中toast提示
toast提示是Android系統中訊息方塊類型,一個簡易的訊息提示框;是Android中用來顯示提示訊息的一種機制。
當視圖顯示給用戶,在應用程式中顯示為浮動。和Dialog不一樣的是,它永遠不會獲得焦點,無法被點擊。使用者將可能是在中間鍵入別的東西。
Toast類別的想法就是盡可能不引人注意,同時也向使用者顯示訊息,希望他們看到。而且Toast顯示的時間有限,Toast會根據使用者設定的顯示時間後自動消失。
下面用一個實例來看看如何使用Toast:
默认样式:Toast.makeText(getApplicationContext(), "默认Toast样式", Toast.LENGTH_SHORT).show(); 自定义显示位置:toast = Toast.makeText(getApplicationContext(), "自定义位置Toast", Toast.LENGTH_LONG); toast.setGravity(Gravity.CENTER, 0, 0); toast.show(); 带图片效果:toast = Toast.makeText(getApplicationContext(), "带图片的Toast", Toast.LENGTH_LONG); toast.setGravity(Gravity.CENTER, 0, 0); LinearLayout toastView = (LinearLayout) toast.getView(); ImageView imageCodeProject = new ImageView(getApplicationContext()); imageCodeProject.setImageResource(R.drawable.icon); toastView.addView(imageCodeProject, 0); toast.show(); 完全自定义:LayoutInflater inflater = getLayoutInflater(); View layout = inflater.inflate(R.layout.custom, (ViewGroup) findViewById(R.id.llToast)); ImageView image = (ImageView) layout .findViewById(R.id.tvImageToast); image.setImageResource(R.drawable.icon); TextView title = (TextView) layout.findViewById(R.id.tvTitleToast); title.setText("Attention"); TextView text = (TextView) layout.findViewById(R.id.tvTextToast); text.setText("完全自定义Toast"); toast = new Toast(getApplicationContext()); toast.setGravity(Gravity.RIGHT | Gravity.TOP, 12, 40); toast.setDuration(Toast.LENGTH_LONG); toast.setView(layout); toast.show();
更多相關知識,請訪問PHP中文網!
以上是toast提示是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!