片段Android中的水平滚动视图
问题描述:
我想让我的 ScrollView 填充片段的完整布局并水平滚动,而不是垂直滚动.
I would like to make my ScrollView filling out the full layout of a fragment and scrolling horizontally, not vertically.
我怎样才能做到这一点?!
How can I achieve that?!
谢谢
答
不是垂直的,是水平的
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
// Add your ImageButtons
</LinearLayout>
</HorizontalScrollView>