非按钮视图上的Android Ripple效果提升

非按钮视图上的Android Ripple效果提升,第1张

概述我试图将触摸反馈添加到LinearLayout,类似于API级别21中常规Button的反馈,非常类似于 this示例,并且迄今为止都没有成功. 我已经定义了一个像这样的标准波纹可绘制: <ripple xmlns:android="http://schemas.android.com/apk/res/android"android:color="?android:colorControlHig 我试图将触摸反馈添加到linearLayout,类似于API级别21中常规button的反馈,非常类似于 this示例,并且迄今为止都没有成功.

我已经定义了一个像这样的标准波纹可绘制:

<ripple xmlns:androID="http://schemas.androID.com/apk/res/androID"androID:color="?androID:colorControlHighlight"><item androID:ID="@androID:ID/mask">    <shape androID:shape="rectangle">        <solID androID:color="?androID:colorAccent" />    </shape></item>

并使用了Google提供的StateListAnimator here:

<selector xmlns:androID="http://schemas.androID.com/apk/res/androID"><item androID:state_enabled="true" androID:state_pressed="true">    <objectAnimator        androID:duration="@androID:integer/config_shortAnimTime"        androID:propertyname="translationZ"        androID:valueto="@dimen/touch_raise"        androID:valueType="floatType" /></item><item>    <objectAnimator        androID:duration="@androID:integer/config_shortAnimTime"        androID:propertyname="translationZ"        androID:valueto="0dp"        androID:valueType="floatType" /></item>

在定义动画师和波纹可绘制之后,我将它们添加到我的linearLayout中,如下所示:

<linearLayout    androID:ID="@+ID/linearLayout"            androID:clickable="true"    androID:focusable="true"    androID:orIEntation="horizontal"    androID:background="@drawable/ripple"    androID:stateListAnimator="@anim/touch_elevation">

我的想法是使用这个linearLayout作为一个按钮,因为我更容易插入各种类型的文本并在其中处理ImageVIEw定位(而不是按钮drawables).

只要视图的背景根据this问题没有透明度,就可以单独添加涟漪效果或动画.

我不确定这是否是与上述问题相关的问题,但看到标准按钮设法同时采用波纹和高程动画反馈,我认为在其他视图中也可以实现这种效果.

任何洞察这个问题将不胜感激.

解决方法 使用 ForegroundLinearLayout.它允许在视图的前景中放置波纹或任何其他可绘制的.您可以使用相同的方法创建ForegroundrelativeLayout等(只需使此类从relativeLayout扩展).

以下是stateListAnimator和ripple drawable的示例:

<your.package.ForegroundlinearLayout    androID:layout_wIDth="300dp"    androID:layout_height="300dp"    androID:layout_centerInParent="true"    androID:gravity="center"    androID:foreground="@drawable/bg_ripple"    androID:background="#fff"    androID:clickable="true"    androID:stateListAnimator="@animator/animator_elevation">    <TextVIEw        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"        androID:text="Hello World!"/></your.package.ForegroundlinearLayout>

结果:

编辑:ForegroundlinearLayout存在于支持设计库中.所以你可以使用androID.support.design.internal.ForegroundlinearLayout

总结

以上是内存溢出为你收集整理的非按钮视图上的Android Ripple效果提升全部内容,希望文章能够帮你解决非按钮视图上的Android Ripple效果提升所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存