Android中用Toast.cancel()方法优化toast内容的显示

本文介绍了一个Android Toast统一管理类,利用`Toast.cancel()`方法在更新内容时避免重复创建,提高应用性能。提供了多种显示Toast的静态方法,并给出了不推荐的做法及其原因。
摘要由CSDN通过智能技术生成

import android.content.Context;
import android.widget.Toast;

/**
 * Toast统一管理类
 * 
 */
public class T
{
    private static Toast toast;

    private T()
    {
        /* cannot be instantiated */
        throw new UnsupportedOperationException("cannot be instantiated");
    }

    public static void showToast(Context context, String text, int gravity)
    {
        if (null == toast)
        {
            toast = Toast.makeText(context, text, Toast.LENGTH_LONG);
            toast.setGravity(gravity, 0, 0);
        }
        else
        {
            toast.setText(text);
        }
        toast.show();
    }

    public static void showToast(Context context, String text)
    {
        if (null == toast)
        {
            toast = Toast.makeText(context, text, Toast.LENGTH_LONG);
        }
        else
        {
            toast.setText(text);
        }
        toast.show();
    }

    public static void showToast(Context context, int resId)
    {
        if (null == toast)
        {
            toast = Toast.makeText(context, resId, Toast.LENGTH_LONG);
        }
        else
        {
            toast.setText(resId);
        }
        toast.show();
    }

    public static void showToast(Context context, int resId, int gravity)
    {
        if (null == toast)
        {
            toast = Toast.makeText(context, resId, Toast.LENGTH_LONG);
            toast.setGravity(gravity, 0, 0);
        }
        else
        {
            toast.setText(resId);
        }
        toast.show();
    }

}



不推荐如下的做法:
http://blog.csdn.net/arui319/article/details/7022392

Android中如何做到Service被关闭后又自动启动

Android中动态添加Panel的框架代码

Android提醒微技巧,你真的了解Dialog、Toast和Snackbar吗?
http://www.open-open.com/lib/view/open1469613952067.html
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值