Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
AndroidでカスタムListViewを使用してsomedataを表示しています...デフォルトでは、ListViewのサイズを25に設定しました。ユーザーがlistViewの下部で下に移動したときに、に加えてさらに25のビューを表示したいと思います。前のもの(リストには50個の要素が表示されるはずです)
これをどのように実装できますか?
これを使ってみてください
ListView lv = (ListView)findViewById(R.id.list_view); lv.setOnScrollListener(new OnScrollListener() { @Override public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) { //load more content } });