如何为ScrollView添加修复图像背景?

时间:2010-12-11 10:35:05

标签: android layout

我想要滚动视图滚动,但不想要背景中的图像。

2 个答案:

答案 0 :(得分:6)

在滚动视图框架之前的视图层次结构的上方添加图像

答案 1 :(得分:2)

一个例子是:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:background="@drawable/background_image"
 android:orientation="vertical">

 <ListView
  android:id="@+id/category_list"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:cacheColorHint="@android:color/transparent"/>

 <TextView
  android:id="@android:id/empty"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"/>

</LinearLayout>

此处Linearlayout保持背景图像。列表将以透明背景显示在此上方。有关此主题的更多信息,请查看ListView Backgrounds