Guest User

Untitled

a guest
Apr 10th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. class SignInActivity : AppCompatActivity() {
  2.  
  3. // ...
  4.  
  5. fun authorizeUser(username: String, password: String) {
  6. doAsync {
  7. // ...
  8. activityUiThread {
  9. if (authorized) {
  10. startActivity<ContainerActivity>()
  11. } else {
  12. view.showAccessDeniedAlertDialog()
  13. }
  14. }
  15. }
  16. }
  17. }
Add Comment
Please, Sign In to add comment