如何修复背景但listview可滚动?

时间:2013-04-17 18:53:53

标签: android listview background-image fixed scrollable

我几乎完成了我的应用程序,现在我正在做最后的修改。我让我的列表视图透明,我设置了背景,这太可怕了。如何修复我的图像并且只能滚动列表视图?

这是我的XML。我有很多这样的名单。

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

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <ListView
        android:id="@+id/listView1"
        android:layout_width="wrap_content"
        android:layout_height="1100dp"
        android:layout_alignParentRight="true"
        android:background="@android:color/transparent"
        android:cacheColorHint="#00000000"
        android:drawSelectorOnTop="true"
        android:textSize="10pt" >

    </ListView>

</RelativeLayout>
</ScrollView>

0 个答案:

没有答案