修复吐司模块不显示字幕的BUG

This commit is contained in:
ZhanGSKen
2025-03-15 15:26:59 +08:00
parent c0347ed706
commit db96ece15f
4 changed files with 12 additions and 9 deletions

View File

@@ -28,6 +28,6 @@ public class ToastUtils {
}
public static void show(String message) {
Toast.makeText(getInstance().mContext, "", Toast.LENGTH_SHORT).show();
Toast.makeText(getInstance().mContext, message, Toast.LENGTH_SHORT).show();
}
}