在我的应用程序中,我几乎在所有活动中使用自定义吐司。要创建自定义Toast,我有以下方法:
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();
}
它工作正常但是对于每个活动我需要复制这个方法,而不是真的尊重DRY原则......
我如何创建一个静态类(例如),其中我有一个方法可以在当前活动中触发自定义吐司?
由于
答案 0 :(得分:3)
您应该创建一个包含toast方法的自定义抽象Activity,然后为您的应用程序的活动扩展它:
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();
}
}
答案 1 :(得分:0)
我想说你可以创建一个接受Context对象的[静态]类。然后使用:
Toast toast = Toast.makeText(context, text, duration).show();
所以在静态类中:
public static class Utility
{
public static void toast(Context context, String msg)
{
Toast toast = Toast.makeText(context, msg, Toast.DURATION_LONG).show();
}
}
或类似的东西