[Andorid] Load More Button in ListView

  • 0
* Android ListView with Load More Button
更新時也同時注意 ListView 的 android:transcriptMode 屬性



// LoadMore button
Button btnLoadMore = new Button(this);
btnLoadMore.setText("Load More");
// Adding Load More button to lisview at bottom
lv.addFooterView(btnLoadMore);

btnLoadMore.setOnClickListener(new Button.OnClickListener() {
     @Override
     public void onClick(View arg0) {
          // loadMoreListViewItem

     }
});
不想用 Button 的話, 可以參考這篇,把 view 獨立出去
Android tutorial: Dynamicaly load more items to the ListView ( Never Ending List! )

沒有留言 :

張貼留言