Android之给控件添加水纹波效果
【摘要】 1 问题
给控件添加水纹波效果,点击起来像点中了,不然效果太粗糙了,没反应。
2 实现
给控件添加如下属性
android:background="?android:attr/selectableItemBac...
1 问题
给控件添加水纹波效果,点击起来像点中了,不然效果太粗糙了,没反应。
2 实现
给控件添加如下属性
-
android:background="?android:attr/selectableItemBackground"波纹有边界
-
android:background="?android:attr/selectableItemBackgroundBorderless"波纹超出边界
设置水纹波颜色
android:colorControlHighlight:
3 需要注意地方
1)在哪个控件上点击需要有效果必须设置为点击事件
-
所以只需要为View 设置
-
android:clickable="true"
-
或者
-
.setOnClickListener(null);
2)自己测试双层view包裹没效果,比如下面
-
<LinearLayout android:background="?android:attr/selectableItemBackground">
-
<LinearLayout>
-
<AppCompatTextView>
-
</AppCompatTextView>
-
</LinearLayout>
-
</LinearLayout>
3) 自己测试单层view包裹有效果,比如下面
-
<LinearLayout>
-
<LinearLayout android:background="?android:attr/selectableItemBackground">
-
<AppCompatTextView>
-
</AppCompatTextView>
-
</LinearLayout>
-
</LinearLayout>
文章来源: chenyu.blog.csdn.net,作者:chen.yu,版权归原作者所有,如需转载,请联系作者。
原文链接:chenyu.blog.csdn.net/article/details/105457518
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)