所以我有这样的事情:
protected void populateTransactionList() {
myTransactions.add(new Transaction(78,98,"hello"));
}
现在我希望只有在来自另一个活动的新意图(带有一些数据来替换(78,98,“你好”))时才会发生这种情况。由于我对编码不是很有经验,有人可以帮我们解决这个小问题吗? (Intent不是我的问题,而是ArrayList的填充。我没有找到一个可以帮助我的线程。) 谢谢。
答案 0 :(得分:-1)
您想要覆盖活动方法onNewIntent(Intent intent)
@Override
public void onNewIntent(Intent intent) {
// call intent.getExtra(..) method to get your stored transaction value(s)
// call myTransactions.add(...) with the values from the intent
}