其他分享
首页 > 其他分享> > android – 在TextView对象上设置背景并保持涟漪效果

android – 在TextView对象上设置背景并保持涟漪效果

作者:互联网

我想以编程方式设置TextView对象的背景,但也会产生连锁反应.

我可以使用后台设置为android:selectableItemBackground,但设置背景时涟漪效果会丢失.

我还尝试将ImageView与TextView一起放在FrameLayout中.并且将图像设置为不是TextView的背景,而是将其设置为ImageView的图像:是的,纹波就在那里,但它似乎在图像的“后面”.

我是否需要从背景位图创建RippleDrawable?我该怎么办?

解决方法:

我和你有同样的问题,并使用它修复它
FrameLayout上的android:foreground =“?attr / selectableItemBackground”.

以下是FrameLayout示例:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/more"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:clickable="true"
    android:foreground="?attr/selectableItemBackground">
    <ImageView
        android:id="@+id/discover_carousel_item_image"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_gravity="center_vertical|center_horizontal"
        android:scaleType="fitXY" />
</FrameLayout>

标签:android,android-imageview,android-textview,background,rippledrawable
来源: https://codeday.me/bug/20190609/1206450.html