良い一日、
私の主な活動はオブジェクトであり、
public Network netConnection = null;
私の主な活動では、次に呼び出します:
netConnection = new Network(new Network.OnMessageReceived() {
@Override
// here the messageReceived method is implemented
public void messageReceived(String message) {
// this method calls the onProgressUpdate
publishProgress(message);
}
});
netConnection.run();
ここで、新しいアクティビティを作成し、次のコードで実行します。
case R.id.menu_packet: {
Intent intent = new Intent(this, PacketActivity.class);
String id = "" + hashCode();
intent.putExtra("id", id);
startActivity(intent);
return true;
}
with putExtra()
私は意図などで物事をやろうとしましたが、うまくいきませんでした。
netConnection の PacketActivity への参照を渡す簡単な方法はありませんか?
私はそれをコピーしたくありません。PacketActivity から netConnection オブジェクトにアクセスできるだけですか?
ありがとう