Android水平scrollview不滚动

时间:2019-02-15 17:03:21

标签: android android-scrollview android-constraintlayout

我已经按如下方式以水平方式包含滚动视图,但它没有滚动。找不到问题。难道我们在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>

1 个答案:

答案 0 :(得分:3)

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