जब मैं एक NestedScrollView के अंदर एक RecyclerView जोड़ते हैं तो मुझे एक अजीब स्क्रॉलिंग व्यवहार मिल रहा है।
क्या होता है कि जब भी स्क्रॉलव्यू की तुलना में स्क्रीन में अधिक पंक्तियाँ दिखाई जा सकती हैं, जैसे ही गतिविधि शुरू की जाती है, NestedScrollView शीर्ष (छवि 1) से ऑफसेट के साथ शुरू होता है। यदि स्क्रॉल दृश्य में कुछ आइटम हैं, तो वे सभी एक ही बार में दिखाए जा सकते हैं, ऐसा नहीं होता है (छवि 2)।
मैं समर्थन पुस्तकालय के संस्करण 23.2.0 का उपयोग कर रहा हूं।
छवि 1 : गलत - ऊपर से ऑफसेट के साथ शुरू होता है
चित्र 2 : सही - पुनर्नवीनीकरण दृश्य में कुछ आइटम
मैं अपने लेआउट कोड के नीचे चिपका रहा हूं:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="fill_vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="10dp">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="16dp"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Title:"
style="@style/TextAppearance.AppCompat.Caption"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/bodyPadding"
style="@style/TextAppearance.AppCompat.Body1"
android:text="Neque porro quisquam est qui dolorem ipsum"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Subtitle:"
style="@style/TextAppearance.AppCompat.Caption"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/TextAppearance.AppCompat.Body1"
android:padding="@dimen/bodyPadding"
android:text="Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit..."/>
</LinearLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/rv"
android:focusable="false"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
क्या मैं कुछ भूल रहा हूँ? किसी को भी यह कैसे तय करने के लिए कोई विचार है?
अपडेट १
यह सही ढंग से काम करता है अगर मैं अपनी गतिविधि को शुरू करते समय निम्नलिखित कोड रखता हूं:
sv.post(new Runnable() {
@Override
public void run() {
sv.scrollTo(0,0);
}
});
जहां sv NestedScrollView का संदर्भ है, हालांकि यह काफी हैक जैसा दिखता है।
अपडेट २
अनुरोध के अनुसार, यहां मेरा एडेप्टर कोड है:
public abstract class ArrayAdapter<T, VH extends RecyclerView.ViewHolder>
extends RecyclerView.Adapter<VH> {
private List<T> mObjects;
public ArrayAdapter(final List<T> objects) {
mObjects = objects;
}
/**
* Adds the specified object at the end of the array.
*
* @param object The object to add at the end of the array.
*/
public void add(final T object) {
mObjects.add(object);
notifyItemInserted(getItemCount() - 1);
}
/**
* Remove all elements from the list.
*/
public void clear() {
final int size = getItemCount();
mObjects.clear();
notifyItemRangeRemoved(0, size);
}
@Override
public int getItemCount() {
return mObjects.size();
}
public T getItem(final int position) {
return mObjects.get(position);
}
public long getItemId(final int position) {
return position;
}
/**
* Returns the position of the specified item in the array.
*
* @param item The item to retrieve the position of.
* @return The position of the specified item.
*/
public int getPosition(final T item) {
return mObjects.indexOf(item);
}
/**
* Inserts the specified object at the specified index in the array.
*
* @param object The object to insert into the array.
* @param index The index at which the object must be inserted.
*/
public void insert(final T object, int index) {
mObjects.add(index, object);
notifyItemInserted(index);
}
/**
* Removes the specified object from the array.
*
* @param object The object to remove.
*/
public void remove(T object) {
final int position = getPosition(object);
mObjects.remove(object);
notifyItemRemoved(position);
}
/**
* Sorts the content of this adapter using the specified comparator.
*
* @param comparator The comparator used to sort the objects contained in this adapter.
*/
public void sort(Comparator<? super T> comparator) {
Collections.sort(mObjects, comparator);
notifyItemRangeChanged(0, getItemCount());
}
}
और यहाँ मेरा ViewHolder है:
public class ViewHolder extends RecyclerView.ViewHolder {
private TextView txt;
public ViewHolder(View itemView) {
super(itemView);
txt = (TextView) itemView;
}
public void render(String text) {
txt.setText(text);
}
}
और यहाँ RecyclerView में प्रत्येक आइटम का लेआउट है (यह सिर्फ है android.R.layout.simple_spinner_item
- यह स्क्रीन केवल इस बग का उदाहरण दिखाने के लिए है):
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
style="?android:attr/spinnerItemStyle"
android:singleLine="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:textAlignment="inherit"/>
LayoutManager
android:focusableInTouchMode="false"
के लिएRecyclerView
? smth स्पष्ट रूप से "अपने लेआउट को नीचे जाने के लिए मजबूर कर रहा है ... (जहां यह 1295 आइटम होने पर शुरू होता है? नीचे या सिर्फ पहली स्क्रीन की तरह छोटे शीर्ष ऑफसेट)