Last active
November 7, 2017 08:36
-
-
Save Shahgupta4sq/b601f358b3cf038625b75a56477888e9 to your computer and use it in GitHub Desktop.
This file contains 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
viewModel.getStatus().observe(this, Observer { handleStatus(it) }) | |
private fun handleStatus(status: Status?) { | |
when (status) { | |
Status.EMPTY_FIRST_NAME -> Toast.makeText(activity, "Please enter your first name!", Toast.LENGTH_SHORT).show() | |
Status.EMPTY_LAST_NAME -> Toast.makeText(activity, "Please enter your last name", Toast.LENGTH_SHORT).show() | |
Status.EMPTY_CITY -> Toast.makeText(activity, "Please choose your home city", Toast.LENGTH_SHORT).show() | |
Status.INVALID_URI -> Toast.makeText(activity, "Unable to load the photo", Toast.LENGTH_SHORT).show() | |
Status.SUCCESS -> { | |
startActivity(HomeFragment.newIntent(activity)) | |
activity.finish() | |
} | |
else -> Toast.makeText(activity, "Something went wrong, please try again!", Toast.LENGTH_SHORT).show() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment