是否可以將ListView項目插入列表頂部,並且最近的項目位置在頂部?我知道實現此目的的其他方法,例如items.add(0, item);
,getItem(getCount() - position - 1);
以及在runnble()
內使用listView.smoothScrollToPosition(0);
,但結果爲as shows in this image,其中數字表示int position
索引。添加到列表中的新項目放置在底部,向上推動所有以前的項目。將項目動態添加到列表視圖頂部
我想結果提前like this?
感謝。
只是顛倒了名單。 –
頂部還是底部? – injecteer