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?
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á!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With