I have a listview and I override the onScroll event for it so that I can get the first character of the text on the first visible item of the listview. My code is as follows:

            @Override
   public void onScrollStateChanged(AbsListView view, int scrollState) {
    //
   }
   @Override
   public void onScroll(AbsListView view, int firstVisibleItem,
     int visibleItemCount, int totalItemCount) {
    ListView caller = (ListView) view;
    View v = caller.getChildAt(firstVisibleItem);
    if(v instanceof TextView){
     TextView tv = (TextView) v;
     if(tv != null){
      String sInitial = tv.getText().toString(); 
      sInitial = Character.toString(sInitial.charAt(0));

      TextView tvPager = (TextView) findViewById(R.id.tvPager);
      tvPager.setText(sInitial);
     }
    }
   }

When the FirstVisibleItem variable is from 0 to 12(to be precise), my View v is not null and I can get the text of it. But when it goes beyond 12, my v is already null. My items are way more than 12 so it shouldn't be null.

Is there something wrong with my code? Or are there better way doing what I want? Thanks in advance!

link|improve this question

67% accept rate
feedback

1 Answer

up vote 1 down vote accepted

An android listview recycles "items" in the list when they are not visible on the screen. So anything that is not visible will be null.

http://commonsware.com/Android/excerpt.pdf

link|improve this answer
yeah.. but firstVisibleItem should be visible right? And I am getting the current View from the firstVisibleItem. – junmats Nov 11 '10 at 16:03
It's the first visible position in your adapter. It corresponds to the child of index 0 in ListView. – Romain Guy Nov 11 '10 at 17:32
do you have some idea on how to accomplish what I need? Thanks.. – junmats Nov 15 '10 at 5:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.