gpt4 book ai didi

android - 多 Intent 附加

转载 作者:行者123 更新时间:2023-11-30 03:52:48 26 4
gpt4 key购买 nike

在 Activity 之间传递附加值是行不通的。我尝试了所有我知道的方法。

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);

最佳答案

Intent Extra 键是否相同? ;) (intentSomething 和 intentStart)

关于android - 多 Intent 附加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13897638/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com