хотелось в
ListView добавить фоновое изображение, которое бы прокручивалось вместе с элеметами списка
в проекте реализован
repeat для фонового изображения:
activity_main.xml:
<?xml version="1.0" encoding="utf-8?>
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@layout/repeat_background" />
repeat_background.xml:
<?xml version="1.0" encoding="utf-8?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/back"
android:tileMode="repeat"/>
но фон остается статичным,
есть ли аналог "background-attachment: scroll" из CSS (
htmlbook.ru/css/background-attachment ) ?