片段Android中的水平ScrollView

时间:2015-05-27 08:10:29

标签: android scrollview vertical-alignment

我想让我的ScrollView填充片段的完整布局并水平滚动,而不是垂直滚动。

我怎样才能实现这一目标?!

Like the album covers

由于

2 个答案:

答案 0 :(得分:2)

它不是垂直的,而是水平的

<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>

答案 1 :(得分:0)

您必须将scrollview设置为

    android:fillViewport="true"

以下是完整的代码

 <ScrollView
            xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:tools="http://schemas.android.com/tools"
            android:id="@+id/myscrollView"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fillViewport="true">
 </ScrollView>