我使用Scroll Choise,并尝试将它们水平放置以提供更多便利。
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="0dp"
android:layout_marginEnd="0dp"
android:background="?android:attr/windowBackground"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:menu="@menu/navigation" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="5"
android:layout_marginTop="200dp"
app:layout_constraintTop_toTopOf="parent">
<com.webianks.library.scroll_choice.ScrollChoice
android:id="@+id/scroll_choice1"
android:layout_width="50dp"
android:layout_height="300dp"
android:layout_marginHorizontal="20dp"
android:layout_weight="1" />
</LinearLayout>
但是我不想使用ScrollView,因为我必须添加100个TextViews
答案 0 :(得分:0)
实现它非常简单。 HorizontalScrollView实际上是ScrollView的副本...
<HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="50dp" >
//Place only one element within the layout as it will behave like a ScrollView
</HoHorizontalScrollView>
可能值得一读HorizontalScrollView
有任何问题,随时问...