アクティビティ間でエクストラを渡すことは機能しません。私は知っているすべてのアプローチを試しました。
Intent i = new Intent(getActivity(), SomethingMore.class);
i.putExtra(intentStart, 1);
i.putExtra(intentSomething, true);
startActivity(i);
と
Bundle extras = i.getExtras();
if (extras != null) {
start = extras.getInt(intentStart);
something = extras.getBoolean(intentSomething);
}
動作しません。私もこの方法で検索してみました
start = intent.getIntExtra(intentStart, 0);
something = intent.getBooleanExtra(intentSomething, false);
、これも機能しません。の使用Bundle
もうまくいきません..
Intent i = new Intent(getActivity(), SomethingMore.class);
Bundle mBundle = new Bundle();
mBundle.putInt(intentStart, 1);
mBundle.putBoolean(intentSomething, true));
i.putExtras(mBundle);
startActivity(i);