Android 水平滚动视图不滚动

Android horizontal scrollview not scrolling

我已经按如下水平方式包含了滚动视图,但它没有滚动。找不到问题。我们不能在 ConstraintLayout 中创建滚动视图吗?

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
                                             xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
                                             android:layout_height="match_parent"
                                             xmlns:app="http://schemas.android.com/apk/res-auto">

    <ScrollView
                android:id="@+id/colors_scrollview"
                android:layout_width="250dp"
                android:layout_height="48dp"
                app:layout_constraintBottom_toTopOf="@+id/navigation"
                android:orientation="horizontal">

            <LinearLayout android:layout_width="wrap_content"
                          android:layout_height="wrap_content"
                          android:orientation="horizontal">

                <View
                        android:layout_width="148dp"
                        android:clickable="true"
                        android:layout_height="48dp"
                        android:background="#2196F3" />

                <View
                        android:layout_width="148dp"
                        android:clickable="true"
                        android:layout_height="48dp"
                        android:background="#FFC107" />
           </LinearLayout>

     </ScrollView>
</android.support.constraint.ConstraintLayout>

如果你想要水平滚动,你可以使用 <HorizontalScrollView> </HorizontalScrollView> 标签而不是 <ScrollView>