我有这样的布局:
<android.support.v4.widget.NestedScrollView
android:id="@+id/scroll_view"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:descendantFocusability="afterDescendants"
android:orientation="vertical">
android:descendantFocusability="afterDescendants"
使滚动项可聚焦,从而使scrollView看起来像是滚动的。
怎么可能?
有什么方法可以使scrollView不滚动并使项目可聚焦?