在我的应用程序中,我几乎在所有的活动中都使用自定义吐司。要创建自定义吐司,我有以下方法:

private void getCustomToast(String message)
{
    LayoutInflater li   = getLayoutInflater();
    View toastlayout    = li.inflate(R.layout.toast_error, (ViewGroup)findViewById(R.id.toast_layout));
    TextView text       = (TextView) toastlayout.findViewById(R.id.toast_text);
    text.setText(message);

    Toast toast = new Toast(this);
    toast.setDuration(Toast.LENGTH_LONG);
    toast.setView(toastlayout);
    toast.show();
}

它的工作很好,但对于每一个活动,我需要复制这个方法,而不是真正尊重干燥的原则…
如何创建一个静态类(例如),其中有一个方法可以对当前活动触发自定义toast?
谢谢

最佳答案

您应该创建一个包含toast方法的自定义抽象活动,然后将其扩展为应用程序的活动:

public abstract class ToastActivity extends Activity {

    protected void getCustomToast(String message)
    {
        LayoutInflater li = getLayoutInflater();
        View toastlayout  = li.inflate(
                R.layout.toast_error,
                (ViewGroup) findViewById(R.id.toast_layout));

        TextView text = (TextView) toastlayout.findViewById(R.id.toast_text);
        text.setText(message);

        Toast toast = new Toast(this);
        toast.setDuration(Toast.LENGTH_LONG);
        toast.setView(toastlayout);
        toast.show();
    }

}

10-06 01:25