Make Toast show longer
This commit is contained in:
parent
64a679f10c
commit
3dc9734180
|
|
@ -112,7 +112,7 @@ public class WebsigninTask extends AsyncTask<String, Void, Bundle> {
|
||||||
protected void onPostExecute(Bundle bundle) {
|
protected void onPostExecute(Bundle bundle) {
|
||||||
String error = bundle.getString("ERROR");
|
String error = bundle.getString("ERROR");
|
||||||
if (error != null && error.length() > 0) {
|
if (error != null && error.length() > 0) {
|
||||||
Toast.makeText(this.activity, error, Toast.LENGTH_SHORT).show();
|
Toast.makeText(this.activity, error, Toast.LENGTH_LONG).show();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Intent intent = new Intent(this.activity, AuthenticationActivity.class);
|
Intent intent = new Intent(this.activity, AuthenticationActivity.class);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user