listview.getChildAt(positon) returns null hatasının çözümü
Aşağıdaki kodu listivew içinde yazın
View view;
int firstPos = listview.getFirstVisiblePosition();
int wantedPos = position - firstPos;
if ((wantedPos >= 0) && (wantedPos <= listview.getChildCount())
{
view =listview.getChildAt(wantedPos);
if (view == null){
return;}
else{
// burada view ' ı kullanın }
}
Hiç yorum yok:
Yorum Gönder