ScrollView不滚动?

时间:2010-12-15 07:18:25

标签: android android-widget android-layout

我有一个 ScrollView / RelativeLayout / FrameLayout ,我在programmaticaly里面放了一些小部件。

这是gui xml:

<?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="fill_parent"
android:fillViewport="true"
android:background="@drawable/fond_app">
  <RelativeLayout
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  >
   <TextView
   android:id="@+id/titreAppli"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="My Big Application" 
   android:textStyle="bold"
   android:textColor="#9b9b71"
   android:textSize="15dp"
   />
   <FrameLayout
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:id="@+id/out"
   android:layout_below="@id/titreAppli"
   />
  </RelativeLayout>
</ScrollView> 

在FrameLayout中,我将programaticaly另一个RelativeLayout和其他小部件放在里面。

使用一些小部件(文本,图像,按钮),我无法滚动。使用其他(带文本的线性列表),我可以滚动。

为什么?有解决方案吗?

感谢。

2 个答案:

答案 0 :(得分:4)

首先删除框架布局。您应该使用其他布局,例如relative而不是framelayout。 Becasue Framelayout没有扩展,前滚动视图不起作用。如果您使用线性或亲戚,那么它们将展开,您将能够滚动。

答案 1 :(得分:3)

你试过没有android:fillViewport="true"吗?