fix crash posing Toast from non-looper Activities

This commit is contained in:
Eric House 2016-01-08 18:58:46 -08:00
parent f5947d25d9
commit 7e714ae547

View file

@ -136,7 +136,12 @@ public class Utils {
public static void showToast( Context context, String msg )
{
Toast.makeText( context, msg, Toast.LENGTH_SHORT).show();
// Make this safe to call from non-looper threads
try {
Toast.makeText( context, msg, Toast.LENGTH_SHORT).show();
} catch ( java.lang.RuntimeException re ) {
DbgUtils.loge( re );
}
}
public static void showToast( Context context, int id )