0

我有一个 ArrayList Buttons 和一个 ArrayList newButtons。是否有可能在按钮列表“后面”添加 newButtons 列表?我尝试使用适配器,但失败了。

ArrayAdapter<Button> adapter = new ArrayAdapter<Button>(getApplicationContext(), android.R.layout.simple_list_item_1, Buttons);

我不知道这是否是适配器的正确方法。

for (int a = 0; a < newButtons.size(); a++){
        adapter.add(newButtons.get(a));
    }

这就是我尝试添加的 newButtons 列表。

4

1 回答 1

1

如果列表都存储相同的类型,您可以通过调用buttons.addAll(newButtons);

于 2013-05-27T19:45:30.020 回答