使用每个新意图填充事务列表

时间:2017-02-08 19:50:21

标签: android android-intent arraylist

所以我有这样的事情:

protected void populateTransactionList() {
    myTransactions.add(new Transaction(78,98,"hello"));
}

现在我希望只有在来自另一个活动的新意图(带有一些数据来替换(78,98,“你好”))时才会发生这种情况。由于我对编码不是很有经验,有人可以帮我们解决这个小问题吗? (Intent不是我的问题,而是ArrayList的填充。我没有找到一个可以帮助我的线程。) 谢谢。

1 个答案:

答案 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
}