Created
May 30, 2020 22:15
-
-
Save chelseatroy/21391cae04c1eda71cd4b3b8ad1f7d76 to your computer and use it in GitHub Desktop.
Fake Logging In
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
class LoginActivity : AppCompatActivity() { | |
... | |
override fun onCreate(savedInstanceState: Bundle?) { | |
... | |
signInButton.setOnClickListener { view -> | |
startActivity(Intent(this@LoginActivity, MainActivity::class.java)) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment