这是我的布局:
<?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个元素,但我只能看到两个,无法滚动。我怎么能这样做滚动所有页面不仅列表?
答案 0 :(得分:2)
您无法在ScrollView中使用ListView。由于ListView有自己的Scrolling实现,因此将它放在ScrollView中会影响它的Scroll以及ScrollView。因此,请在ScrollView中没有ListView的方式替换您的布局。
答案 1 :(得分: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中,这解决了我的问题。
答案 2 :(得分:1)
在scrollview中添加listview不是更好的实现。如果你在滚动视图中有一个列表视图,当你滚动列表视图时,它很难让android产生差异,滚动浏览器将会滚动列表视图,因此列表视图中的项目不会被提升。因此,您可以通过线性布局替换滚动视图。
另外,通过查看您的布局设计,可以发现很多布局并不是真正需要的。你更好地检查你的设计。 Lint可以帮助您删除不必要的布局。