首页 > 代码库 > Android Toast
Android Toast
/* a toast with style white (white background and black text, ...) */ public static Toast showToastBackgroundWhite(Context context, CharSequence text) { int duration = Toast.LENGTH_LONG; Toast toast = Toast.makeText(context, text, duration); toast.setGravity(Gravity.CENTER, 0, 0); LinearLayout toastLayout = (LinearLayout) toast.getView(); toastLayout.setBackgroundResource(R.drawable.background_round_white_half_transparent2); TextView toastTV = (TextView) toastLayout.getChildAt(0); toastTV.setTextColor(Color.BLACK); toastTV.setTextSize(40); toastTV.setTypeface(null, Typeface.BOLD); toastTV.setShadowLayer(0, 0, 0, 0); toast.show(); return toast; } /* a toast with style by default (black background and white text, ...) */ public static Toast showToast(Context context, CharSequence text) { int duration = Toast.LENGTH_LONG; Toast toast = Toast.makeText(context, text, duration); toast.setGravity(Gravity.CENTER, 0, 0); LinearLayout toastLayout = (LinearLayout) toast.getView(); toastLayout.setBackgroundResource(R.drawable.background_round_black); TextView toastTV = (TextView) toastLayout.getChildAt(0); toastTV.setTextSize(40); toastTV.setTypeface(null, Typeface.BOLD); toast.show(); return toast; }
如果使用白色背景,默认的 Toast 效果是会给字体加阴影的,但在白色背景下非常难看。默认的黑色背景加白色带阴影字体。所以用白色背景时,需要去掉阴影。
Toast 显示时候会一个接一个显示,所以可能会造成延时。所以显示后一个 Toast 时应该把前面的取消。做法就是调用 cancel() 方法。
Android Toast
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。