Created
May 16, 2021 16:18
-
-
Save pauloaapereira/6d8bda6c415389177928f446e011b28c to your computer and use it in GitHub Desktop.
Android SOLID Error Handling
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
@Parcelize | |
class NotFoundError : ErrorView { | |
override fun setupView(binding: FragmentErrorBinding) { | |
binding.apply { | |
errorTitle.setText(R.string.key_error) | |
errorDescription.setText(R.string.key_not_found_error) | |
errorImage.setImageResource(R.drawable.ic_not_found) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment