Got the following Image View:
<ImageView
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax"
android:clickable="true"
android:focusable="true"
android:background="?android:attr/selectableItemBackground"/>
Ripple works great if I don't set a bitmap to the image view. But once I set a bitmap like this, ripple effect is gone:
ImageView iv=((ImageView)rootView.findViewById(R.id.header));
iv.setImageBitmap(myBitmap);
This is my ripple.xml:
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="?android:colorControlHighlight">
<item android:id="@android:id/mask">
<shape android:shape="oval">
<solid android:color="?android:colorAccent" />
</shape>
</item>
</ripple>
I guess that the bitmap hides the ripple effect, how can I make it visible? Already tried:
- Changing android:background to android:foreground, which didn't work.
- Configuring another transparent ImageView on top of this one, but since it was transparent ripple wasn't shown.
Any ideas? I've seen Lollipop Contacts made this as well.