Created
November 15, 2016 14:23
-
-
Save sembozdemir/220643bb0a6eb00bade1756075e90da3 to your computer and use it in GitHub Desktop.
TodoKotlin - MainActivity.kt (after extracting UI code)
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 MainActivity : AppCompatActivity() { | |
override fun onCreate(savedInstanceState: Bundle?) { | |
super.onCreate(savedInstanceState) | |
MainActivityUI(TodoListAdapter()).setContentView(this) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment