How can I display Toast messages from a thread?
Answer
You can do it by calling an Activity's runOnUiThread method from your thread:
Activity
runOnUiThread
activity.runOnUiThread(new Runnable() { public void run() { Toast.makeText(activity, "Hello", Toast.LENGTH_SHORT).show(); }});
I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print ...
No comments:
Post a Comment