是否可以在Android中为listview控件设置水印背景?基本上我想要一个静止的背景图像,在图像的顶部有一个列表视图。当我滚动时,我希望listview像正常一样滚动,但图像保持静止。由于Android中似乎没有任何z顺序,我想知道这是否可行。
答案 0 :(得分:2)
您是否尝试过ListView.setBackgroundResource(int resId)
?
或者整个屏幕使用......
getWindow().getDecorView().setBackgroundResource(int resId)
在滚动列表时,您需要使用setCacheColorHint(0)
来防止“停电”。