[์๋๋ก์ด๋] ํ๋ฉด ์ ํ ๋ฐฉ๋ฒ
ANDROID
2020. 8. 2. 16:51
btn_move=findViewById(R.id.btn_move); btn_move ๋ฒํผ์ ๋๋ ์ ๋ ํ๋ฉด์ด ์ ํ๋๋๋ก ํ๋ ค๋ฉด? //move๋ฒํผ์ ๋๋ฅด๋ฉด ์คํ๋๋ ๋ฉ์๋ btn_move.setOnClickListener(new OnClickListener() { @Override public void onClick(View view) { str=et_move.getText().toString(); //๊ฐ์ฒด ์์ฑ Intent intent=new Intent(MainActivity.this,SubActivity.class); intent.putExtra("str",str);//๋ฐ์ดํฐ๋ฅผ ๋ด๋๋ค. startActivity(intent); //์กํฐ๋นํฐ ์ด๋ฆ } }); Intent ๊ฐ์ฒด์ธ intent๋ฅผ ๋ง๋ ๋ค. (..