Android:ScrollView不会滚动

时间:2011-07-01 21:37:32

标签: java android android-layout

我通过列表视图填充了以下XML文件。我无法滚动它。请指教:

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

<ScrollView 
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:fillViewport="true"
    android:scrollbars="vertical">

    <LinearLayout 
        android:orientation="vertical" 
        android:id="@+id/myMainLayout" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content">   

        <com.google.ads.AdView android:id="@+id/adViewer"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            ads:adUnitId="xxxxxxxxxxxxxx"
            ads:adSize="BANNER"
            ads:loadAdOnCreate="true"/>
        <TextView 
            android:layout_height="wrap_content" 
            android:layout_width="fill_parent" 
            android:text="RandomDrunkQuotes.com" 
            android:id="@+id/lblTitle" 
            android:textSize="16px" 
            android:padding="5px" 
            android:textStyle="bold" 
            android:gravity="center_horizontal"/>

        <!-- List Divider -->
        <View 
            android:layout_width="fill_parent"
            android:layout_height="1dip"
            android:background="?android:attr/listDivider" />
        <!-- ListView (grid_items) -->
        <ListView 
            android:id="@+id/listview"
            android:layout_height="fill_parent"
            android:layout_width="fill_parent">
        </ListView>             

    </LinearLayout>

</ScrollView>

 </LinearLayout>

2 个答案:

答案 0 :(得分:1)

@GiantMarshmallow解决了它。

删除滚动视图并添加

android:fillViewport="true"
android:scrollbars="vertical"

到父LinearLayout修复了我的问题。非常感谢大家的意见。

答案 1 :(得分:0)

scrollView中的ListView是个糟糕的主意。尽量不要使用彼此使用可聚焦的视图。