現在のアクティビティから起動されているアクティビティにバンドルを渡す正しい方法は何ですか?共有プロパティ?
いくつかのオプションがあります:
Intent mIntent = new Intent(this, Example.class);
Bundle extras = mIntent.getExtras();
extras.putString(key, value);
2)新しいバンドルを作成する
Intent mIntent = new Intent(this, Example.class);
Bundle mBundle = new Bundle();
mBundle.putString(key, value);
mIntent.putExtras(mBundle);
3)Intentの putExtra() ショートカットメソッドを使用します
Intent mIntent = new Intent(this, Example.class);
mIntent.putExtra(key, value);
次に、起動されたアクティビティで、次の方法でそれらを読み取ります。
String value = getIntent().getExtras().getString(key)
注:バンドルには、「get」および「put」メソッドがありますすべてのプリミティブ型、Parcelables、Serializables。デモ用に文字列を使用しました。
インテントからバンドルを使用できます:
Bundle extras = myIntent.getExtras();
extras.put*(info);
またはバンドル全体:
myIntent.putExtras(myBundle);
これはあなたが探しているものですか?
Androidの1つのアクティビティからアクティビティにデータを渡す
インテントには、アクションとオプションの追加データが含まれます。データは、インテントputExtra()
メソッドを使用して他のアクティビティに渡すことができます。データは追加として渡され、key/value pairs
です。キーは常に文字列です。値として、int、float、charsなどのプリミティブデータ型を使用できます。また、1つのアクティビティから別のアクティビティにParceable and Serializable
オブジェクトを渡すこともできます。
Intent intent = new Intent(context, YourActivity.class);
intent.putExtra(KEY, <your value here>);
startActivity(intent);
Androidアクティビティからのバンドルデータの取得
IntentオブジェクトのgetData()
メソッドを使用して、情報を取得できます。 IntentオブジェクトはgetIntent()
メソッドを介して取得できます。
Intent intent = getIntent();
if (null != intent) { //Null Checking
String StrData= intent.getStringExtra(KEY);
int NoOfData = intent.getIntExtra(KEY, defaultValue);
boolean booleanData = intent.getBooleanExtra(KEY, defaultValue);
char charData = intent.getCharExtra(KEY, defaultValue);
}
バンドルを使用して、あるアクティビティから別のアクティビティに値を渡すことができます。現在のアクティビティで、バンドルを作成し、特定の値にバンドルを設定して、そのバンドルをインテントに渡します。
Intent intent = new Intent(this,NewActivity.class);
Bundle bundle = new Bundle();
bundle.putString(key,value);
intent.putExtras(bundle);
startActivity(intent);
これで、NewActivityでこのバンドルを取得し、値を取得できます。
Bundle bundle = getArguments();
String value = bundle.getString(key);
インテントを介してデータを渡すこともできます。現在のアクティビティで、このような意図を設定し、
Intent intent = new Intent(this,NewActivity.class);
intent.putExtra(key,value);
startActivity(intent);
NewActivityで、このような意図からその値を取得できます。
String value = getIntent().getExtras().getString(key);
first activityでこのコードを使用できます:
Intent i = new Intent(Context, your second activity.class);
i.putExtra("key_value", "your object");
startActivity(i);
2番目のアクティビティでオブジェクトを取得します。
Intent in = getIntent();
Bundle content = in.getExtras();
// check null
if (content != null) {
String content = content_search.getString("key_value");
}
これはあなたがいるアクティビティです:
Intent intent = new Intent(CurrentActivity.this,NextActivity.class);
intent.putExtras("string_name","string_to_pass");
startActivity(intent);
NextActivity.Javaで
Intent getIntent = getIntent();
//call a TextView object to set the string to
TextView text = (TextView)findViewById(R.id.textview_id);
text.setText(getIntent.getStringExtra("string_name"));
これは私のために働く、あなたはそれを試すことができます。