Comment puis-je afficher les messages Toast d'un fil de discussion?
Comment puis-je afficher les messages Toast d'un fil de discussion?
Réponses:
Vous pouvez le faire en appelant une Activity
de » runOnUiThread
méthode de votre fil:
activity.runOnUiThread(new Runnable() {
public void run() {
Toast.makeText(activity, "Hello", Toast.LENGTH_SHORT).show();
}
});
Thread
référence de l' objet à la Activity
dans les Activity
« s onResume
. Désactivez-le dans le Activity
's onPause
. Faites les deux sous une synchronized
serrure qui respecte Activity
et Thread
respecte.
Activity
instance, vous pouvez utiliser une simple classe d'assistance à la place, voir ici: stackoverflow.com/a/18280318/1891118
MyActivity.this.runOnUiThread()
fonctionne très bien depuis un fichier Thread
/ AsyncTask
.
J'aime avoir une méthode dans mon activité appelée showToast
que je peux appeler de n'importe où ...
public void showToast(final String toast)
{
runOnUiThread(() -> Toast.makeText(MyActivity.this, toast, Toast.LENGTH_SHORT).show());
}
Je l'appelle alors le plus souvent de l'intérieur MyActivity
sur n'importe quel fil comme celui-ci ...
showToast(getString(R.string.MyMessage));
Ceci est similaire à d'autres réponses, mais mis à jour pour les nouveaux apis disponibles et beaucoup plus propre. Aussi, ne suppose pas que vous êtes dans un contexte d'activité.
public class MyService extends AnyContextSubclass {
public void postToastMessage(final String message) {
Handler handler = new Handler(Looper.getMainLooper());
handler.post(new Runnable() {
@Override
public void run() {
Toast.makeText(getContext(), message, Toast.LENGTH_LONG).show();
}
});
}
}
Une approche qui fonctionne à peu près n'importe où, y compris à partir d'endroits où vous n'avez pas de Activity
ou View
, consiste à attraper un Handler
dans le fil principal et à montrer le toast:
public void toast(final Context context, final String text) {
Handler handler = new Handler(Looper.getMainLooper());
handler.post(new Runnable() {
public void run() {
Toast.makeText(context, text, Toast.LENGTH_LONG).show();
}
});
}
L'avantage de cette approche est qu'elle fonctionne avec tout Context
, y compris Service
et Application
.
Comme ceci ou ceci , avec un Runnable
qui montre le Toast
. À savoir,
Activity activity = // reference to an Activity
// or
View view = // reference to a View
activity.runOnUiThread(new Runnable() {
@Override
public void run() {
showToast(activity);
}
});
// or
view.post(new Runnable() {
@Override
public void run() {
showToast(view.getContext());
}
});
private void showToast(Context ctx) {
Toast.makeText(ctx, "Hi!", Toast.LENGTH_SHORT).show();
}
Parfois, vous devez envoyer un message d'un autre Thread
au thread d'interface utilisateur. Ce type de scénario se produit lorsque vous ne pouvez pas exécuter d'opérations réseau / E / S sur le thread d'interface utilisateur.
L'exemple ci-dessous gère ce scénario.
Runnable
sur le thread d'interface utilisateur. Alors postez votre Runnable
gestionnaire surHandlerThread
Runnable
et renvoyez-le au fil d'interface utilisateur et affichez un Toast
message.Solution:
HandlerThread
:requestHandler
responseHandler
et la handleMessage
méthode de substitutionpost
une Runnable
tâche surrequestHandler
Runnable
tâche, appelez sendMessage
leresponseHandler
sendMessage
appel de résultat de handleMessage
in responseHandler
.Message
et traitez-les, mettez à jour l'interface utilisateurExemple de code:
/* Handler thread */
HandlerThread handlerThread = new HandlerThread("HandlerThread");
handlerThread.start();
Handler requestHandler = new Handler(handlerThread.getLooper());
final Handler responseHandler = new Handler(Looper.getMainLooper()) {
@Override
public void handleMessage(Message msg) {
//txtView.setText((String) msg.obj);
Toast.makeText(MainActivity.this,
"Runnable on HandlerThread is completed and got result:"+(String)msg.obj,
Toast.LENGTH_LONG)
.show();
}
};
for ( int i=0; i<5; i++) {
Runnable myRunnable = new Runnable() {
@Override
public void run() {
try {
/* Add your business logic here and construct the
Messgae which should be handled in UI thread. For
example sake, just sending a simple Text here*/
String text = "" + (++rId);
Message msg = new Message();
msg.obj = text.toString();
responseHandler.sendMessage(msg);
System.out.println(text.toString());
} catch (Exception err) {
err.printStackTrace();
}
}
};
requestHandler.post(myRunnable);
}
Articles utiles:
handlerthreads-et-pourquoi-vous-devriez-les-utiliser-dans-vos-applications-android
handler.sendMessage();
post()
Méthode d' appelhandler.post();
runOnUiThread()
view.post()
Vous pouvez utiliser Looper
pour envoyer un Toast
message. Passez par ce lien pour plus de détails.
public void showToastInThread(final Context context,final String str){
Looper.prepare();
MessageQueue queue = Looper.myQueue();
queue.addIdleHandler(new IdleHandler() {
int mReqCount = 0;
@Override
public boolean queueIdle() {
if (++mReqCount == 2) {
Looper.myLooper().quit();
return false;
} else
return true;
}
});
Toast.makeText(context, str,Toast.LENGTH_LONG).show();
Looper.loop();
}
et il est appelé dans votre fil. Contexte peut être Activity.getContext()
obtient du Activity
vous devez montrer le pain grillé.
J'ai fait cette approche basée sur la réponse de mjaggard:
public static void toastAnywhere(final String text) {
Handler handler = new Handler(Looper.getMainLooper());
handler.post(new Runnable() {
public void run() {
Toast.makeText(SuperApplication.getInstance().getApplicationContext(), text,
Toast.LENGTH_LONG).show();
}
});
}
A bien fonctionné pour moi.
J'ai rencontré le même problème:
E/AndroidRuntime: FATAL EXCEPTION: Thread-4
Process: com.example.languoguang.welcomeapp, PID: 4724
java.lang.RuntimeException: Can't toast on a thread that has not called Looper.prepare()
at android.widget.Toast$TN.<init>(Toast.java:393)
at android.widget.Toast.<init>(Toast.java:117)
at android.widget.Toast.makeText(Toast.java:280)
at android.widget.Toast.makeText(Toast.java:270)
at com.example.languoguang.welcomeapp.MainActivity$1.run(MainActivity.java:51)
at java.lang.Thread.run(Thread.java:764)
I/Process: Sending signal. PID: 4724 SIG: 9
Application terminated.
Avant: fonction onCreate
Thread thread = new Thread(new Runnable() {
@Override
public void run() {
Toast.makeText(getBaseContext(), "Thread", Toast.LENGTH_LONG).show();
}
});
thread.start();
Après: fonction onCreate
runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(getBaseContext(), "Thread", Toast.LENGTH_LONG).show();
}
});
ça a marché.