Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android - Prevent Scroll to bottom on notifyDataSetChanged()

Tags:

android

I'm building a chat application and I need to scroll up to Load More Data. But when I call notifyDataSetChanged() my ListView scrolls to bottom.

My ListView:

    <ListView
        android:id="@+id/list_messages"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:transcriptMode="alwaysScroll"
        android:stackFromBottom="true">
    </ListView>

My BaseAdapter is just like this:

public class CompleteListAdapter extends BaseAdapter {  
      private Activity mContext;  
      private List<String> mList;  
      private LayoutInflater mLayoutInflater = null;  
      public CompleteListAdapter(Activity context, List<String> list) {  
           mContext = context;  
           mList = list;  
           mLayoutInflater = (LayoutInflater) mContext  
                     .getSystemService(Context.LAYOUT_INFLATER_SERVICE);  
      }  
      @Override  
      public int getCount() {  
           return mList.size();  
      }  
      @Override  
      public Object getItem(int pos) {  
           return mList.get(pos);  
      }  
      @Override  
      public long getItemId(int position) {  
           return position;  
      }  
      @Override  
      public View getView(int position, View convertView, ViewGroup parent) {  
           View v = convertView;  
           CompleteListViewHolder viewHolder;  
           if (convertView == null) {  
                LayoutInflater li = (LayoutInflater) mContext  
                          .getSystemService(Context.LAYOUT_INFLATER_SERVICE);  
                v = li.inflate(R.layout.list_layout, null);  
                viewHolder = new CompleteListViewHolder(v);  
                v.setTag(viewHolder);  
           } else {  
                viewHolder = (CompleteListViewHolder) v.getTag();  
           }  
           viewHolder.mTVItem.setText(mList.get(position));  
           return v;  
      }    }    class CompleteListViewHolder {  
      public TextView mTVItem;  
      public CompleteListViewHolder(View base) {  
           mTVItem = (TextView) base.findViewById(R.id.listTV);  
      }    
}

How to prevent the list to scroll bottom?

like image 506
Ícaro Abreu Avatar asked Jan 09 '23 19:01

Ícaro Abreu


1 Answers

It was quite easy! Just change the transcriptMode to normal on the ListView

<ListView
    android:id="@+id/list_messages"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:transcriptMode="normal"
    android:stackFromBottom="true">
</ListView>

And hold the first item of the List to get it's position after notifyDataSetChanged()

// Get last item object
Item itemPlaceHolder = itemsList.get(0);

//  {  Retrieve new items here  }

adapter.notifyDataSetChanged(); // <-- Update the adapter

// Get position of the item
int index = itemsList.indexOf(itemPlaceHolder);

list_view.clearFocus(); 
list_view.setFocusable(true);

// Set position of the scroll
list_view.setSelection(index + 1);

Voilá!

like image 130
Ícaro Abreu Avatar answered Jan 15 '23 16:01

Ícaro Abreu