简体   繁体   中英

Create image views with circular selectors on touch in android

I have a requirement to create imageview(or any other controls) and achieve a circular selector when user touches it. I have seen it in many apps like Whatsapp. Here is a sample screenshot from an app which explains what i meant actually. Kindly help. Thanks.

在此处输入图片说明

In layout.xml you have to annotate the clickable view with

android:foreground="?android:attr/selectableItemBackgroundBorderless"

for the effect you describe. However, it does only work for devices with API 21 and above. For devices below API 21 you can use:

android:foreground="?android:attr/selectableItemBackground"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM