-
-
Save AjiSetya/5e2e11f00f28893859dc56cd8f4ef534 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public void showEmailExistAlert(boolean value){ | |
| if(value) { | |
| textEmailAlert.setText(getString(R.string.email_exist_alert)); | |
| textEmailAlert.setVisibility(View.VISIBLE); | |
| } else { | |
| textEmailAlert.setVisibility(View.GONE); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment