10
如何在简单的布局中创建波纹效果
触摸布局时,如何在简单的线性/相对布局中产生波纹效果? 我尝试将布局的背景设置为类似以下内容: <?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>