自定义Toast, 重写Toast的makeText方法,解决了重复弹toast问题

public class MessageBar extends Toast
{
    private static MessageBar mToast;
    
    private static View v;
    
    public MessageBar(Context context)
    {
        super(context);
    }
    
    /**
     * 1:环境   2:字符串 3:延迟大小
     */
    //    public static void show(Context context, String message, int duration)
    //    {
    //        initView(context, message, duration).show();
    //    }
    
    /**
     * 1:环境   2:字符串id 3:延迟大小
     */
    //    public static void show(Context context, int stringId, int duration)
    //    {
    //        initView(context, context.getResources().getString(stringId), duration).show();
    //    }
    
    /**
     * 解决连续弹出toast的问题
     */
    public static void show(Context context, String message)
    {
        if (null == context || null == message || "".equals(message))
        {
            return;
        }
        if (mToast == null)
        {
            mToast = initView(context, message, Toast.LENGTH_SHORT);
        }
        else
        {
            mToast.setText(message);
        }
        mToast.setGravity(Gravity.FILL_HORIZONTAL | Gravity.BOTTOM, 0, 0);
        mToast.show();
    }
    
    /**
     * setText
     */
    public void setText(CharSequence s)
    {
        if (v == null)
        {
            throw new RuntimeException(
                    "This Toast was not created with Toast.makeText()");
        }
        TextView tv = (TextView) v.findViewById(R.id.mbMessage);
        if (tv == null)
        {
            throw new RuntimeException(
                    "This Toast was not created with Toast.makeText()");
        }
        tv.setText(s);
    }
    
    /**
     * 初始化toast 视图
     */
    public static MessageBar initView(Context context, CharSequence text,
            int duration)
    {
        MessageBar result = new MessageBar(context);
        LayoutInflater inflate = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        v = inflate.inflate(R.layout.mb_messagebar, null);
        TextView tv = (TextView) v.findViewById(R.id.mbMessage);
        tv.setText(text);
        result.setView(v);
        result.setDuration(duration);
        return result;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值