我有一个tileable图像,我想用它作为ListView
的背景。我已经设置了setCacheColorHint(android.R.color.transparent)
,以便使用setBackgroundDrawable()
正确查看背景图片。
我的问题是当我滚动ListView
时,图像保持原位并且不会滚动。我假设这是正常的行为,但我希望图像与文本一起滚动。
有没有办法做到这一点,而不是诉诸自己ListView
或设置每个单元格视图的背景?我没有使用XML,因为我希望这是动态的。
答案 0 :(得分:2)
创建一个类并使用ListView ::
扩展它public class MyCustomListView extends ListView
{
private Bitmap background;
public MyCustomListView(Context context, AttributeSet attrs)
{
super(context, attrs);
background = BitmapFactory.decodeResource(getResources(), R.drawable.yourImage);//yourImage means your listView Background which you want to move
}
@Override
protected void dispatchDraw(Canvas canvas)
{
int count = getChildCount();
int top = count > 0 ? getChildAt(0).getTop() : 0;
int backgroundWidth = background.getWidth();
int backgroundHeight = background.getHeight();
int width = getWidth();
int height = getHeight();
for (int y = top; y < height; y += backgroundHeight)
{
for (int x = 0; x < width; x += backgroundWidth)
{
canvas.drawBitmap(background, x, y, null);
}
}
super.dispatchDraw(canvas);
}
}
现在在您的XML文件中,选择一个像这样的listiview ::
//根据您的要求设置其他属性
<com.test.MyCustomListView
android:id="@+id/listview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
</com.test.MyCustomListView>