在Toast 中顯示圖片
Drawable adDrawable;// Your Drawable
Bitmap bitmap; //Your bitmap
Toast toast = newToast(this);
ImageView view = new ImageView(this);
view.setBackground(adDrawable);//set drawable
//set bitmap 看要設定Drawable 還是 bitmap 選一個即可
// view.setImageBitmap(bitmap);
toast.setGravity(Gravity.BOTTOM,0,0);//set where to show
toast.setView(view);
toast.setDuration(Toast.LENGTH_LONG);
toast.show();
全站熱搜