Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. class SampleActivityUI : AnkoComponent<SampleActivity> {
  2.  
  3. override fun createView(ui: AnkoContext<SampleActivity>): View = with(ui) {
  4. verticalLayout {
  5. checkBox("ボタン1")
  6. checkBox("ボタン2")
  7. checkBox("ボタン3") {
  8. isChecked = true
  9. }
  10. }
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement