wildanfuady

Untitled

Nov 20th, 2019
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. override fun onCreateOptionsMenu(menu: Menu?): Boolean {
  2. menuInflater.inflate(R.menu.add, menu)
  3. return super.onCreateOptionsMenu(menu)
  4. }
  5.  
  6. override fun onOptionsItemSelected(item: MenuItem?): Boolean {
  7. if (item!!.itemId==R.id.itemAdd){
  8. startFormActivity()
  9.  
  10. }
  11. return super.onOptionsItemSelected(item)
  12. }
  13.  
  14. private fun startFormActivity() {
  15. var intent = Intent(this, FormActivity::class.java)
  16. startActivity(intent)
  17.  
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment