Android中怎么使用Toast自定義圖片和文字?針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。
建昌ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書(shū)未來(lái)市場(chǎng)廣闊!成為創(chuàng)新互聯(lián)的ssl證書(shū)銷售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:028-86922220(備注:SSL證書(shū)合作)期待與您的合作!
自定義工具類代碼
public class ToastUtils { private static Context mContext = OcreanSonicApplication.getContext(); public static void showToast(String toast) { Toast.makeText(mContext, toast, Toast.LENGTH_SHORT).show(); } /** * 帶圖片的吐司提示 * @param text */ public static void showCustomImgToast(String text) { LayoutInflater inflater = LayoutInflater.from(mContext); View view = inflater.inflate(R.layout.toast_view, null); ImageView imageView = (ImageView) view.findViewById(R.id.toast_image); imageView.setBackgroundResource(R.mipmap.pd_ic_finish); TextView t = (TextView) view.findViewById(R.id.toast_text); t.setText(text); Toast toast = null; if (toast != null) { toast.cancel(); } toast = new Toast(mContext); toast.setDuration(Toast.LENGTH_SHORT); toast.setView(view); toast.show(); } /** * 帶圖片的吐司提示 * 通過(guò)參數(shù)傳遞,可是設(shè)置吐司的圖片和文字內(nèi)容 * @param text */ public static void showCustomImgToast(String text,int imgResId) { LayoutInflater inflater = LayoutInflater.from(mContext); View view = inflater.inflate(R.layout.toast_view, null); ImageView imageView = (ImageView) view.findViewById(R.id.toast_image); imageView.setBackgroundResource(R.mipmap.pd_ic_finish); TextView t = (TextView) view.findViewById(R.id.toast_text); t.setText(text); Toast toast = null; if (toast != null) { toast.cancel(); } toast = new Toast(mContext); toast.setDuration(Toast.LENGTH_SHORT); toast.setView(view); toast.show(); } /** * 不帶圖片的吐司提示 * @param text */ public static void showCustomToast(String text) { LayoutInflater inflater = LayoutInflater.from(mContext); View view = inflater.inflate(R.layout.toast_view, null); ImageView imageView = (ImageView) view.findViewById(R.id.toast_image); imageView.setVisibility(View.GONE); TextView t = (TextView) view.findViewById(R.id.toast_text); t.setText(text); Toast toast = null; if (toast != null) { toast.cancel(); } toast = new Toast(mContext); toast.setDuration(Toast.LENGTH_SHORT); toast.setView(view); toast.show(); } /** * 帶圖片的吐司,設(shè)置吐司彈出的位置為屏幕中心 * @param text */ public static void showCustomToastCenter(String text) { showCustomToastCenter(text, R.mipmap.pd_ic_finish); } /** * 帶圖片的吐司,設(shè)置吐司彈出的位置為屏幕中心 * 通過(guò)參數(shù)傳遞,可是設(shè)置吐司的圖片和文字內(nèi)容 * @param text */ public static void showCustomToastCenter(String text, int imgResId) { LayoutInflater inflater = LayoutInflater.from(mContext); View view = inflater.inflate(R.layout.toast_view, null); ImageView imageView = (ImageView) view.findViewById(R.id.toast_image); imageView.setBackgroundResource(imgResId); TextView t = (TextView) view.findViewById(R.id.toast_text); t.setText(text); Toast toast = null; if (toast != null) { toast.cancel(); } toast = new Toast(mContext); toast.setDuration(Toast.LENGTH_SHORT); toast.setView(view); toast.setGravity(Gravity.CENTER, 0, 0); toast.show(); } }
在自定義Toast中引用xml布局,用來(lái)放置圖片和文字,設(shè)置id,可以任意在Java代碼中設(shè)置
關(guān)于Android中怎么使用Toast自定義圖片和文字問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒(méi)有解開(kāi),可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。