可聚焦项在scrollView中进行滚动

时间:2018-12-11 15:40:14

标签: android layout focus android-scrollview

我有这样的布局:

  <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不滚动并使项目可聚焦?

0 个答案:

没有答案