기타/기타 잡다한 것들

버튼 클릭하면 다른 엑티비티로 이동

제주도소년 2018. 8. 23. 22:10



1
2
3
4
5
6
7
8
9
ImageButton btn1 = (ImageButton) findViewById(R.id.board);
        btn1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new Intent(MainActivity.this, boardWrite.class);
                startActivity(intent);
                finish();
            }
        });
cs



레이아웃에서 

android:id="@+id/board"

와 같이 이미지버튼이 있다면 java 파일에서 아래와 같이 입력하면 해당 이미지 버튼을 클릭하면

boardWrite 액티비티로 전환이 된다.


MainActivity (현재 액티비티) -> boardWrite (전환할 액티비티)