[android] 의도 데이터가 반환되지 않음
활동이 생성 될 때 전달되는 인 텐트를 가져 오는 getIntent가 아니라 예제에서 data라는 onActivityResult에 전달 된 인 텐트를 사용합니다. IE protected void onActivityResult(int requestCode, int resultCode, Intent data) { Bundle extras = data.getExtras(); //THIS IS THE LINE I CHANGED if (extras != null) { String myStr = extras.getString("TASK"); TextView tv = (TextView) findViewById(R.id.taskList); tv.setText(myStr); } }//onActivityResult ---..
카테고리 없음
2021. 3. 2. 02:22