触摸布局时,如何在简单的线性/相对布局中产生波纹效果?
我尝试将布局的背景设置为类似以下内容:
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="?android:colorControlHighlight" >
<item android:drawable="@android:color/white"/>
</ripple>
但是,在触摸版面时,我只会看到纯白色的背景并且没有波纹效果。我究竟做错了什么?
编辑:
供参考,这是我的布局xml文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="250dp"
android:layout_height="250dp"
android:background="@drawable/test"
android:clickable="true">
</RelativeLayout>
<item android:drawable="@android:color/white"/>
部分,此方法也可以正常工作。因此,如果我想在布局上使用背景色,我不确定该如何工作。将其放置在具有背景颜色的另一版面之上也不起作用!