radio buttons style to match the theme. error toast on failure

This commit is contained in:
M M Arif
2019-10-25 23:19:16 +05:00
parent c4b0b596d3
commit 7e3eef90d2
3 changed files with 10 additions and 0 deletions

View File

@@ -507,6 +507,9 @@ public class LoginActivity extends AppCompatActivity implements View.OnClickList
@Override
public void onFailure(@NonNull Call<UserInfo> call, @NonNull Throwable t) {
Log.e("onFailure", t.toString());
Toasty.info(getApplicationContext(), getResources().getString(R.string.genericError));
enableProcessButton();
loginButton.setText(R.string.btnLogin);
}
});