How to navigate from one screen to another screen

前端 未结 16 1470
失恋的感觉
失恋的感觉 2020-11-29 04:31

How to navigate from one Activity screen to another Activity screen? In the first screen I\'m having one button if I click the button it has to move to another Activity scre

16条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-29 05:04

    The most trivial case (called from activity):

    startActivity(new Intent(this, ActivityToLaunch.class));
    

    More details here: http://developer.android.com/guide/topics/fundamentals.html

提交回复
热议问题