Android 서로 다른 apk 간 전달 매개 변수 와 데이터

전재 출처:http://dongyang555-126-com.iteye.com/blog/1308586
 
android 프로 그래 밍 을 할 때 서로 다른 apk 사이 에 인자 나 데 이 터 를 전달 해 야 할 때 가 있 습 니 다. 다음은 간단 한 예 입 니 다. APK (1) 의 프로그램 코드 입 니 다.
 
IntentSend.java:
package com.is;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class IntentSend extends Activity {
Channel channel = new Channel();
Button szws;

   
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        szws = (Button)findViewById(R.id.szws);
        szws.setOnClickListener(new Button.OnClickListener(){
public void onClick(View v) {
Intent intent = new Intent();
Bundle bundle = new Bundle();
bundle.putString("channel", channel.channels[0]);
intent.setClassName("com.bget", "com.bget.BinderGET");
intent.putExtras(bundle);
startActivity(intent);
}
        });
    }
}

Channel.java:
 package com.is;
public class Channel {
 String channels[] = {
  "    ",
  "     ",
  "    "
 };
}


APK (2) 의 프로그램 코드:
IntentGet.java:
package com.ig;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class IntentGet extends Activity {
 TextView info;
 
   
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main); 
        info =(TextView)findViewById(R.id.info);
       Bundle bundle = new Bundle();
     bundle = this.getIntent().getExtras();
       
        info.setText("      :" + bundle.getString("channel"));
    }
}

프로그램 에 서 는 주로 Intent 와 Bundle 의 방법, Intent 프로그램 간 의 도약, Bundle 프로그램 간 의 데이터 전달 을 호출 합 니 다.

좋은 웹페이지 즐겨찾기