2

我有一个具有这种布局的页面:

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

<TextView
    android:id="@+id/question_label"    
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Your question: "
    />     

<TextView
    android:id="@+id/question"    
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text=""
    />     

<TextView
    android:id="@+id/please_wait"    
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Please wait while the discussion loads..."
    />     

    <ListView
    android:id="@android:id/list"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@+id/label"
        android:textSize="20px" >        
    </ListView>

        <EditText  
            android:id="@+id/question_text"  
            android:layout_height="wrap_content"  
            android:hint="@string/question_comment_hint"  
            android:inputType="textMultiLine"  
            android:lines="5"  
            android:layout_width="fill_parent">  
        </EditText>

<Button  
            android:id="@+id/submit"  
            android:layout_height="wrap_content"  
            android:text="@string/submit"  
            android:onClick="sendFeedback"  
            android:layout_width="fill_parent">  
        </Button>               


</LinearLayout>

由于某种原因,一旦屏幕被填满,它就不会向下滚动。知道为什么会发生这种情况吗?

谢谢!

4

4 回答 4

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

<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/question_label"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="Your question: " />

        <TextView
            android:id="@+id/question"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="" />

        <TextView
            android:id="@+id/please_wait"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="Please wait while the discussion loads..." />

        <ListView
            android:id="@android:id/list"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@+id/label"
            android:textSize="20px" >
        </ListView>

        <EditText
            android:id="@+id/question_text"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:hint="some text"
            android:inputType="textMultiLine"
            android:lines="5" >
        </EditText>

        <Button
            android:id="@+id/submit"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:onClick="sendFeedback"
            android:text="some tesxt" >
        </Button>
    </LinearLayout>
</ScrollView>

</LinearLayout>

你必须使用Scrollview来滚动你的视图,试试上面的代码,希望它能工作。

于 2012-04-12T04:43:57.597 回答
1

使用linearLayout下面的ScrollView ..definetely它将滚动整个布局..

于 2012-04-12T04:31:30.900 回答
1

将您的线性布局嵌入到滚动视图中

http://developer.android.com/reference/android/widget/ScrollView.html

于 2012-04-12T04:32:05.640 回答
1

要在列表中滚动,您必须为第一次显示设置它的高度,然后如果它超过它的长度,它将自动滚动,对于整个活动,如果它不自动滚动,您应该使用滚动,或者您可以通过设置修复来检查它根线性布局的高度

于 2012-04-12T04:37:31.207 回答