Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建一个静态实用程序类,它将包含简单的函数,如 Messagebox(AlertDialog)、EmailSender 等......并将在其他活动上调用这些函数。但据我了解,如果静态类不在类中,我将无法创建它。你对这种实用类有什么建议?
为什么不那样做
class Utils{ public static void makeToast(Context context, String text){ Toast.makeText(context, text, Toast.LENGTH_SHORT).show(); } }
在你的活动中这样称呼它
Utils.makeToast(this,"hi");