Toast是一個View視圖衅澈,快速的為用戶顯示少量的信息。Toast在應用程序上浮動顯示信息給用戶谬墙,它永遠不會獲得焦點今布,不影響用戶的輸入等操作,主要用于一些幫助/提示拭抬。
Toast最常見的創(chuàng)建方法是使用靜態(tài)方法Toast.makeText
默認的顯示方式
// 第一個參數(shù):當前的上下文環(huán)境部默。可用getApplicationContext()或this
// 第二個參數(shù):要顯示的字符串造虎。也可是R.string中字符串ID
// 第三個參數(shù):顯示的時間長短傅蹂。Toast默認的有兩個LENGTH_LONG(長)和LENGTH_SHORT(短),也可以使用毫秒如2000ms
Toast toast=Toast.makeText(getApplicationContext(), "默認的Toast", Toast.LENGTH_SHORT);
//顯示toast信息
toast.show();-
自定義顯示位置
Toast toast=Toast.makeText(getApplicationContext(), "自定義顯示位置的Toast", Toast.LENGTH_SHORT); //第一個參數(shù):設置toast在屏幕中顯示的位置算凿。我現(xiàn)在的設置是居中靠頂 //第二個參數(shù):相對于第一個參數(shù)設置toast位置的橫向X軸的偏移量份蝴,正數(shù)向右偏移,負數(shù)向左偏移 //第三個參數(shù):同的第二個參數(shù)道理一樣 //如果你設置的偏移量超過了屏幕的范圍氓轰,toast將在屏幕內(nèi)靠近超出的那個邊界顯示 toast.setGravity(Gravity.TOP|Gravity.CENTER, -50, 100); //屏幕居中顯示婚夫,X軸和Y軸偏移量都是0 //toast.setGravity(Gravity.CENTER, 0, 0); toast.show();
-
帶圖片的
Toast toast=Toast.makeText(getApplicationContext(), "顯示帶圖片的toast", 3000); toast.setGravity(Gravity.CENTER, 0, 0); //創(chuàng)建圖片視圖對象 ImageView imageView= new ImageView(getApplicationContext()); //設置圖片 imageView.setImageResource(R.drawable.ic_launcher); //獲得toast的布局 LinearLayout toastView = (LinearLayout) toast.getView(); //設置此布局為橫向的 toastView.setOrientation(LinearLayout.HORIZONTAL); //將ImageView在加入到此布局中的第一個位置 toastView.addView(imageView, 0); toast.show();
-
完全自定義顯示方式
//Inflater意思是充氣 //LayoutInflater這個類用來實例化XML文件到其相應的視圖對象的布局 LayoutInflater inflater = getLayoutInflater(); //通過制定XML文件及布局ID來填充一個視圖對象 View layout = inflater.inflate(R.layout.custom2,(ViewGroup)findViewById(R.id.llToast)); ImageView image = (ImageView) layout.findViewById(R.id.tvImageToast); //設置布局中圖片視圖中圖片 image.setImageResource(R.drawable.ic_launcher); TextView title = (TextView) layout.findViewById(R.id.tvTitleToast); //設置標題 title.setText("標題欄"); TextView text = (TextView) layout.findViewById(R.id.tvTextToast); //設置內(nèi)容 text.setText("完全自定義Toast"); Toast toast= new Toast(getApplicationContext()); toast.setGravity(Gravity.CENTER , 0, 0); toast.setDuration(Toast.LENGTH_LONG); toast.setView(layout); toast.show();
-
其他線程通過Handler的調(diào)用
//調(diào)用方法1 //Thread th=new Thread(this); //th.start(); //調(diào)用方法2 handler.post(new Runnable() { @Override public void run() { showToast(); } }); public void showToast(){ Toast toast=Toast.makeText(getApplicationContext(), "Toast在其他線程中調(diào)用顯示", Toast.LENGTH_SHORT); toast.show(); } Handler handler=new Handler(){ @Override public void handleMessage(Message msg) { int what=msg.what; switch (what) { case 1: showToast(); break; default: break; } super.handleMessage(msg); } }; @Override public void run() { handler.sendEmptyMessage(1);
}