我有一个 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 列表。