我在回收站视图中使用多行 EditText 作为列表项。我的问题是 EditText 在 Recycler 视图中滚动不顺畅。
下面是我使用的 XML:
对于回收站视图:
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/rec_actions"
android:layout_above="@+id/sepp"
android:nestedScrollingEnabled="true" />
对于列表项:
<android.support.v4.widget.NestedScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="2"
android:background="@drawable/commentbox_bgright">
<EditText
android:id="@+id/et_control"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@null"
android:gravity="top"
android:minLines="4"
android:padding="5dp"
android:scrollbars="vertical"
android:textCursorDrawable="@null"
android:textSize="12dp" />
</android.support.v4.widget.NestedScrollView>