我需要垂直滚动视图,在横向配置中滚动片段。 这是我的代码:
<?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>
滚动视图水平显示。为什么?
答案 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
默认为水平,我猜是你的问题。