1

这是我的布局:

<?xml version="1.0" encoding="utf-8"?>
        <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/scrollViewContact"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent" 
            android:fillViewport="true">
    <LinearLayout 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"
    android:id="@+id/contactOuterLayout"
    >

    <RelativeLayout 
        android:layout_height="fill_parent"
        android:id="@+id/contactOuterRelativeLayout" 
        android:layout_width="fill_parent"
        android:background="@drawable/radialback">



            <RelativeLayout android:id="@+id/relativeLayout1"
                android:layout_height="wrap_content"                     
                android:layout_width="fill_parent"
                android:layout_below="@+id/tableLayout1" 
                android:paddingBottom="10sp">

                <TableLayout
                    android:id="@+id/contactdetails"
                    android:layout_width="fill_parent"
                    android:layout_height="match_parent"
                    android:stretchColumns="*" >
                        
                    <TableRow 
                        android:id="@+id/mapView"
                        android:layout_height="wrap_content"
                        android:layout_width="fill_parent"
                        >
                        <LinearLayout 
                            android:id="@+id/liny"
                            android:layout_height="match_parent"
                            android:layout_width="match_parent"
                            android:orientation="horizontal"
                            android:weightSum="100">

                            <com.google.android.maps.MapView
                                 android:id="@+id/map"
                                 android:layout_height="100dp"
                                 android:layout_width="100dp"
                                 android:layout_marginLeft="20dp"
                                 android:layout_marginTop="15dp"
                                 android:enabled="true"
                                 android:clickable="true"
                                 android:apiKey="00n1pmS8eEhXhD5a6Q3UTDd6zortw9t4l_jXioQ"
                                />
                            
                <TextView
                    android:id="@+id/MapAdrress"
                    android:layout_width="0dp"
                    android:layout_height="fill_parent"
                    android:layout_marginLeft="10dp"
                    android:layout_marginRight="10dp"
                    android:layout_marginTop="15dp"
                    android:layout_weight="30"
                    android:text="TextView" />
                            
                        </LinearLayout>

                    </TableRow>
                    
                                                            
                    <TableRow android:layout_width="fill_parent"
                        android:layout_height="wrap_content">
                        

                        
                        <TableLayout android:id="@+id/contactinfo" 
                            android:layout_width="fill_parent"
                            android:layout_height="wrap_content"
                            >

                            

                            <TableRow android:layout_width="fill_parent"
                                android:layout_height="wrap_content">
                                <TableLayout android:id="@+id/contactinfo2" 
                                    android:layout_width="fill_parent"
                                    android:layout_height="wrap_content">
                                    <!-- Telephone number, web-site etc -->         
                                </TableLayout>                                                                      
                            </TableRow> 

            
                        
                    </TableLayout>              
                        
                    </TableRow> 
                    
                    <TableRow android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:gravity="center">
                        
                        <TableLayout android:id="@+id/contactinfo" 
                            android:layout_width="fill_parent"
                            android:layout_height="wrap_content"
                            android:gravity="center"
                            
                            >

                        <Button
                            android:id="@+id/butonek"
                            android:layout_width="10dp"
                            android:layout_height="wrap_content"
                             />
            
                    </TableLayout>
                        
                    </TableRow>

                    
                    <TableRow android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center_horizontal"
                        android:gravity="center"
                        android:paddingTop="20dip">
                        <TableLayout android:layout_width="fill_parent"
                            android:layout_height="wrap_content">                                   
                            <TableRow android:layout_width="fill_parent"
                                android:layout_height="wrap_content"
                                android:layout_gravity="center"
                                android:gravity="center_horizontal">
                                <TableLayout android:id="@+id/address" 
                                    android:layout_width="200dip"
                                    android:layout_height="wrap_content">
                                    <!-- Address -->
                                </TableLayout>
                            </TableRow>
                        </TableLayout>
                    </TableRow>                     
                    <TableRow android:layout_width="fill_parent"
                        android:layout_height="match_parent"
                        android:layout_gravity="center_horizontal"
                        android:gravity="center"
                        android:paddingTop="20dip">
                                        <ListView
                     android:id="@+id/contactlist"
                     android:layout_width="match_parent"
                     android:layout_height="match_parent" 
                     android:choiceMode="multipleChoice"
                     />

                    </TableRow> 
                </TableLayout>
            </RelativeLayout>
        
    </RelativeLayout>
</LinearLayout>
    </ScrollView>

这是图片:

在此处输入图像描述

我在列表中有 4 个元素,但我只能看到两个并且无法滚动。我怎么能这样做来滚动所有页面而不仅仅是列表?

4

3 回答 3

2

您不能将 ListView 放在 ScrollView 中。由于 ListView 有自己的 Scrolling 实现,将它放在 ScrollView 中会影响它的 Scroll 以及您的 ScrollView。因此,请以这样一种方式替换您的布局,即您在 ScrollView 中没有您的 ListView。

于 2012-05-16T09:28:59.107 回答
2
        <LinearLayout 
        android:layout_height="match_parent"
        android:layout_width="match_parent">
            <ListView
                 android:id="@+id/contactlist"
                 android:layout_width="match_parent"
                 android:layout_height="match_parent" 
                 android:choiceMode="multipleChoice"
                 />
                 </LinearLayout>

在这种情况下,我将 listView 放在 linearlayout 中,这解决了我的问题。

于 2012-05-16T09:51:59.507 回答
1

在滚动视图中添加列表视图并不是一个更好的实现。当您在滚动视图中有一个列表视图并且当您滚动列表视图时,android 很难做出改变,并且滚动将被滚动视图消耗,尽管您滚动列表视图,因此您的列表视图中的项目不会被抬起。所以你用线性布局替换你的滚动视图。

此外,通过查看您的布局设计,可以发现许多布局并不是真正需要的。你最好审查你的设计。Lint 可以帮助您删除不必要的布局。

于 2012-05-16T09:49:04.590 回答