Questions tagged [touch-feedback]

8 questions
67
votes
10 answers

Touch feedback with RecyclerView and CardView

I would love to enable touch feedback for my Open-Source library. I've created a RecyclerView and a CardView. The CardView contains different areas with different onClick actions. Now I would love to trigger the Ripple effect if a user clicks…
5
votes
1 answer

Enable touch feedback for every buttons

With Android Studio I have some Buttons and I want that when I click on them you can see a kind of movement that confirm you have clicked that Button. Is there a way to do that without create a new xml file in which there is a selector? I'd like to…
Rick
  • 3,943
  • 6
  • 33
  • 45
5
votes
2 answers

Blue highlight over an ImageView when the user taps it

I have a LinearLayout "card" with an ImageView and a TextView. I want the card to be highlighted when the user taps it. See http://www.youtube.com/watch?v=Yx1l9Y7GIk8&feature=share&t=15m17s for an example. This is easily done for the TextView by…
aleb
  • 2,490
  • 1
  • 28
  • 46
2
votes
1 answer

Touch feedback on pictures in Android xml

Anyone know a way to get ImageView (images/pictures) to have touch feedback overlay with Xml. I have tried to do it by creating a drawable background but no luck making work. I've tried it like button feedback but that is unsuccessful for me. I…
1
vote
1 answer

ImageButton touch feedback

how can I implement a touch feedback for ImageButtons? I want the image button to change the image when the button is touched. I already searched, but after trying some things that didn't worked I'm a bit desperate. Is a selector the right thing…
MikeFry
  • 11
  • 4
0
votes
2 answers

Added A Touch FeedBack to Custom View

How can I add a touch feedback like a ripple to my Custom View? I could detect the Touch Events but I want simple like a ripple to happen when my custom view is touched. is that possible? Thanks in advance.
Archie G. Quiñones
  • 11,638
  • 18
  • 65
  • 107
0
votes
1 answer

Haptic feedback proximity/location to user touch

Does android haptic feedback allow vibration to specifically occur at the area of a user's touch? For example, if there were four buttons north, south, east and west on an activity, could you get the vibration to feel like it's pinpointed directly…
Rhys
  • 375
  • 1
  • 5
  • 10
0
votes
2 answers

Making a custom Android ListView partially clickable

I have an Android ListView with a custom item layout: | ... | +-----------------+-------------+ | Labels & Info | ImageView | +-----------------+-------------+ | ... | I want two different…