私のアプリケーションでは、"Listview"
. その中で私が欲しいのは、count of the visible child
.
たとえば、デバイスにそのリストビューをロードすると、最初に 3 つの行が表示されるため、テキストビューに表示する必要が"Showing 3 of 10"
あり、ユーザーがリストビューをスクロールすると、スクロールに従ってそのテキストビューを更新する必要があります..私はたくさん試しましたが、しませんでしたこれを達成した..
私もこれを試しました:
int count=0;
for(int i = 0; i <= listView.getLastVisiblePosition(); i++)
{
if(listView.getChildAt(i)!= null)
{
count++; // saying that view that counts is the one that is not null, because sometimes you have partially visible items....
}
}
常に 0 を返します。これを解決するのを手伝ってください。