Android 折叠工具栏布局+;带D-Pad的嵌套滚动视图

Android 折叠工具栏布局+;带D-Pad的嵌套滚动视图,android,android-collapsingtoolbarlayout,d-pad,Android,Android Collapsingtoolbarlayout,D Pad,我有一个带有嵌套滚动视图的折叠工具栏布局,其中包含一个包含大量内容的文本视图。 在触摸设备上一切正常,但我无法使用D-Pad控制器滚动视图。事实上,我可以上下滚动布局大约一英寸,但不能超过一英寸,即使有更多的内容要显示。这是我的布局。id=description的TextView包含需要滚动的内容 <android.support.design.widget.CoordinatorLayout android:id="@+id/main_content" android:f

我有一个带有嵌套滚动视图的
折叠工具栏布局
,其中包含一个包含大量内容的文本视图。 在触摸设备上一切正常,但我无法使用D-Pad控制器滚动视图。事实上,我可以上下滚动布局大约一英寸,但不能超过一英寸,即使有更多的内容要显示。这是我的布局。id=description的
TextView
包含需要滚动的内容

<android.support.design.widget.CoordinatorLayout
    android:id="@+id/main_content"
    android:fitsSystemWindows="false"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/colorBackgroundLight">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="@dimen/appBarHeight"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        android:fitsSystemWindows="false">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar_layout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_scrollFlags="scroll|exitUntilCollapsed"
            android:fitsSystemWindows="true"
            app:contentScrim="?attr/colorPrimary"
            app:expandedTitleMarginStart="32dp"
            app:expandedTitleMarginEnd="64dp"
            app:expandedTitleTextAppearance="@android:style/TextAppearance.DeviceDefault.Large">

            <FrameLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:layout_collapseMode="parallax"
                android:fitsSystemWindows="true">

                <RelativeLayout
                    android:id="@+id/title_layout"
                    android:fitsSystemWindows="true"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content">

                    <ImageView
                        android:id="@+id/image"
                        android:layout_width="match_parent"
                        android:layout_height="@dimen/appBarHeight"
                        android:scaleType="centerCrop"
                        android:fitsSystemWindows="true"
                        app:layout_collapseMode="parallax" />

                </RelativeLayout>
            </FrameLayout>

            <android.support.v7.widget.Toolbar
                android:id="@+id/collapsing_toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
                android:fitsSystemWindows="true"
                app:layout_collapseMode="pin" />
        </android.support.design.widget.CollapsingToolbarLayout>
    </android.support.design.widget.AppBarLayout>

    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        android:focusable="true">

       <TextView
          android:id="@+id/description"
          android:layout_margin="5dp"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:minHeight="0dp"
          android:layout_marginTop="5dp"/>

    </android.support.v4.widget.NestedScrollView>

</android.support.design.widget.CoordinatorLayout>

谢谢