Android静态实用程序类

时间:2013-10-19 14:52:45

标签: android class static utility

我试图创建一个静态实用程序类,它将包含Messagebox(AlertDialog),EmailSender等简单函数......并将在其他活动上调用这些函数。 但据我所知,如果它不在类中,我就无法创建静态类。 你对这种实用类有什么建议?

1 个答案:

答案 0 :(得分:4)

为什么不这样做

class Utils{
    public static void makeToast(Context context, String text){
        Toast.makeText(context, text, Toast.LENGTH_SHORT).show();
    }
}

在你的活动中这样称呼

Utils.makeToast(this,"hi");