android-在白色背景上添加涟漪背景效果

android-在白色背景上添加涟漪背景效果,第1张

概述我想在我的回收站视图项目上添加涟漪效应,android:background=“?android:attr/selectableItemBackground” 我能够接收涟漪效应,但问题是我想在白色背景上产生涟漪效应.这是我的xml.<LinearLayoutxmlns:android="http://schemas.android.com/apkes/android"android:id="@+

我想在我的回收站视图项目上添加涟漪效应,android:background =“?androID:attr / selectableItemBackground”
 我能够接收涟漪效应,但问题是我想在白色背景上产生涟漪效应.这是我的xml.

<linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:ID="@+ID/layout"androID:layout_wIDth="match_parent"androID:layout_height="wrap_content"androID:orIEntation="horizontal"androID:gravity="center"androID:background="?androID:attr/selectableItemBackground"androID:background="@color/white"androID:layout_marginBottom="1dp"xmlns:tools="http://schemas.androID.com/tools"tools:background="@color/white"androID:padding="6dp">........soME MORE CODE....</linearLayout>

我不能有两个AndroID背景,所以我如何在白色背景上达到涟漪效果

解决方法:

您可以为此使用rippledrawable类.下面是代码:

rippledrawable rippledrawable = (rippledrawable)vIEw.getBackground(); // It will assume bg is a rippledrawableint[][] states = new int[][] { new int[] { androID.R.attr.state_enabled} };int[] colors = new int[] { color.BLUE }; // sets the ripple color to bluecolorStateList colorStateList = new colorStateList(states, colors);rippledrawable.setcolor(colorStateList);

如果您对xml满意,则可以使用以下代码:

<?xml version="1.0" enCoding="utf-8"?><ripple    xmlns:androID="http://schemas.androID.com/apk/res/androID"    androID:color="#FF000000">     <!-- the normal bg color -->    <item>        <color androID:color="#FFddddAA" />    </item>    <!-- make sure the ripple doesn't exceed the bounds -->    <item androID:ID="@androID:ID/mask">        <shape androID:shape="rectangle">            <solID androID:color="?androID:colorAccent" />        </shape>    </item></ripple>
总结

以上是内存溢出为你收集整理的android-在白色背景上添加涟漪背景效果全部内容,希望文章能够帮你解决android-在白色背景上添加涟漪背景效果所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1121006.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存