如何在使用android时滚动列表:background =“@ drawable / view1”

时间:2012-11-05 06:39:17

标签: android android-listview

我在Listview中有多个项目,我在ImageButton下面放置了listview

当我使用android:src ="@drawable/view1"获取所有项目并能够使用滚动时。

但每当我使用背景代替 src

图片按钮中的

android:background="@drawable/view1",滚动不起作用,为什么?

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:background="#ffffff">

 <include
    android:id="@+id/header"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    layout="@layout/header"/>

<ListView android:layout_height="wrap_content"
    android:layout_weight="1" android:id="@+id/listView1"
    android:layout_width="fill_parent" 
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"
    android:layout_marginTop="20dp"
    android:cacheColorHint="#00000000"
    android:divider="#00000000"
    android:dividerHeight="20dp"/>


<ImageButton 
    android:layout_width="wrap_content" 
    android:id="@+id/ButtonViewCart"
    android:layout_height="wrap_content" 
    android:background="@drawable/view1"
    android:layout_margin="5dip"
    android:layout_gravity="right"/>

  </LinearLayout>

2 个答案:

答案 0 :(得分:5)

ListViews默认是可滚动的。如果ListView中的项目数超过了屏幕上显示的数量,则会自动滚动。

答案 1 :(得分:-1)

以根节点创建<ScrollView>并尝试:

<?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:background="@drawable/mainbk" >

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

 <include
    android:id="@+id/header"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    layout="@layout/header"/>

<ListView android:layout_height="wrap_content"
    android:layout_weight="1" android:id="@+id/listView1"
    android:layout_width="fill_parent" 
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"
    android:layout_marginTop="20dp"
    android:cacheColorHint="#00000000"
    android:divider="#00000000"
    android:dividerHeight="20dp"/>


<ImageButton 
    android:layout_width="wrap_content" 
    android:id="@+id/ButtonViewCart"
    android:layout_height="wrap_content" 
    android:background="@drawable/view1"
    android:layout_margin="5dip"
    android:layout_gravity="right"/>

  </LinearLayout>

</ScrollView>