Android Activity 간 데이터 전달 방식 6 가지

Inten 의 putExtra 전달 사용 하기
첫 번 째 액 티 비 티 중 에...

//      
 Intent intent = new Intent(this,TwoActivity.class);
 //       
 intent.putExtra("data",str);
 //    
 startActivity(intent);
두 번 째 액 티 비 티 중 에...

//       
 Intent intent = getIntent();
 //      
 String str = intent.getStringExtra("data");
 //   
 tv.setText(str);
Intention 의 Bundle 전달 사용 하기
첫 번 째 액 티 비 티 중 에...

//      
 Intent intent = new Intent(MainActivity.this,TwoActivity.class);
 //        
 Bundle bundle = new Bundle();
 bundle.putString("data", str);
 //         
 intent.putExtra("bun", bundle);
 //    
 startActivity(intent);
두 번 째 액 티 비 티.

//  Bundle
 Intent intent = getIntent();
 Bundle bundle = intent.getBundleExtra("bun");
 String str = bundle.getString("data");
 tv.setText(str);
Activity 를 사용 하여 소각 시 데 이 터 를 전달 합 니 다.
첫 번 째 액 티 비 티 중 에...

  Intent intent = new Intent(MainActivity.this,TwoActivity.class);
  //         Activity
 startActivityForResult(intent, 11);
//    
 
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
 super.onActivityResult(requestCode, resultCode, data);
 String str = data.getStringExtra("data");
 tvOne.setText(str);
}
두 번 째 activity 중

//       
 Intent intent = new Intent();
 intent.putExtra("data", edtOne.getText().toString().trim());
 setResult(3, intent);
 //    activity
 finish();
SharedPreferences 전달 데이터
첫 번 째 액 티 비 티 중 에...

SharedPreferences sp = this.getSharedPreferences("info", 1);
 //  sp   
 Editor edit = sp.edit();
 edit.putString("data", str);
 edit.commit();
 //      
 Intent intent = new Intent(MainActivity.this,TwoActivity.class);
 //    
 startActivity(intent);
두 번 째 액 티 비 티 중 에...

SharedPreferences sp = this.getSharedPreferences("info", 1);
 //    
 tv.setText(sp.getString("data", ""));
직렬 화 대상 Seriazable 사용 하기
도구 클래스

import java.io.Serializable;
class DataBean implements Serializable {
 private String name;
 private String sex;
 public String getName() {
 return name;
 }
 public void setName(String name) {
 this.name = name;
 }
 public String getSex() {
 return sex;
 }
 public void setSex(String sex) {
 this.sex = sex;
 }
}
첫 번 째 액 티 비 티.

//    
 Intent intent = new Intent(MainActivity.this,TwoActivity.class);
 DataBean bean = new DataBean();
 //  set        DataBean   
 bean.setName("  ");
 bean.setSex(" ");
 intent.putExtra("key", bean);
 startActivity(intent);
두 번 째 액 티 비 티.

Intent intent = getIntent();
 //        
 Serializable se = intent.getSerializableExtra("key");
 if(se instanceof DataBean){
  //        DataBean  db
  DataBean db = (DataBean) se;
  tv.setText(db.getName()+"==="+db.getSex());
 }
정적 변수 로 데 이 터 를 전달 합 니 다.
첫 번 째 액 티 비 티.

Intent intent = new Intent(MainActivity.this,TwoActivity.class);
  TwoActivity.name="  ";
  TwoActivity.str="  ";
  startActivity(intent);
두 번 째 액 티 비 티.

//    
protected static String name;
protected static String str;
tv.setText(str+name);
위 에서 말 한 것 은 안 드 로 이 드 액 티 비 티 간 에 데 이 터 를 전달 하 는 6 가지 방식 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 메 시 지 를 남 겨 주세요.편집장 님 께 서 바로 답 해 드 리 겠 습 니 다.여기 서도 저희 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기