How to navigate from one screen to another screen

前端 未结 16 1503
失恋的感觉
失恋的感觉 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 04:58

    Use following code..I hope this will help you.

    Button button = (Button)findViewById(R.id.xxx);
    button.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
            Intent intent=new Intent(CurrentActivity.this,NextActivity.class);
            startActivity(intent);
        }
    });
    

    xxx is id from your xml of your Button.

提交回复
热议问题