-1
私はこのヘルパーメソッドを書いて、どこからでもトーストを表示できます。私のヘルパーライブラリコレクションに追加する前に誰かが見て、それはすべてOKであると言うことができますか?ここでどのような状況でもトーストを表示する
static void showToast(Context ctx, CharSequence msg) {
Looper mainLooper = Looper.getMainLooper();
Runnable r = new ToastOnUIThread(ctx, msg);
boolean onUiThread;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
onUiThread = mainLooper.isCurrentThread();
} else {
onUiThread = Thread.currentThread() == mainLooper.getThread();
}
if (!onUiThread) {
if (ctx instanceof Activity) {
((Activity) ctx).runOnUiThread(r);
} else {
Handler h = new Handler(mainLooper);
h.post(r);
}
} else {
r.run();
}
}
、ToastOnUIThreadクラスは次のとおりです。
private static class ToastOnUIThread implements Runnable {
private Context ctx;
private CharSequence msg;
private ToastOnUIThread(Context ctx, CharSequence msg) {
this.ctx = ctx;
this.msg = msg;
}
public void run() {
Toast.makeText(ctx, msg, Toast.LENGTH_SHORT).show();
}
};
このコードを使用しているときに問題が見つかりましたか?そうでなければ、私はこれがこの質問をする正しい場所ではないと思うからです。とにかく私はあなたのコードに何の問題も見ません –