垂直scrollview

时间:2012-03-08 09:13:08

标签: android android-layout

我需要垂直滚动视图,在横向配置中滚动片段。 这是我的代码:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:scrollbars="vertical" >

    <LinearLayout
        android:id="@+id/linearLayout2"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <fragment
            android:id="@+id/fragment2"
            android:name="com.kevtech.dup.frag1"
            android:layout_width="wrap_content"
            android:layout_height="match_parent" />

        <fragment
            android:id="@+id/fragment1"
            android:name="com.kevtech.dup.frag2"
            android:layout_width="wrap_content"
            android:layout_height="match_parent" />

        <fragment
            android:id="@+id/fragment3"
            android:name="com.kevtech.dup.frag3"
            android:layout_width="wrap_content"
            android:layout_height="match_parent" />
        </LinearLayout>
    </ScrollView>

滚动视图水平显示。为什么?

1 个答案:

答案 0 :(得分:0)

您需要在orientation上声明相应的LinearLayout媒体资源。 scrollbars上的ScrollView属性不会更改内容的呈现方式;内容的布局本身决定了这一点。

例如:

<LinearLayout
    android:id="@+id/linearLayout2"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

如果您没有声明方向,LinearLayout默认为水平,我猜是你的问题。