我如何控制波纹褪色的持续时间



i编写一个通过添加:

来具有连锁效果的Android代码
android:background="?attr/selectableItemBackground"

我需要调整它。我知道如何改变连锁颜色。但是,您认为以下内容甚至可以调音吗?

  • 在点击(单击并放开(,在压制颜色上显示常规,没有涟漪。
  • 握住手指时 - 显示波纹
  • 在打开后6毫秒后开始褪色

我知道添加可绘制的选择器允许控制更多状态,但我认为它不能控制持续时间。

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:state_pressed="true">
    <shape android:shape="oval">
      <solid android:color="@color/grey200_alpha_10"/>
    </shape>
  </item>
  <item android:state_focused="true">
    <shape android:shape="oval">
      <solid android:color="@color/grey200_alpha_12"/>
    </shape>
  </item>
  <item android:state_hovered="true">
    <shape android:shape="oval">
      <solid android:color="@color/grey200_alpha_4"/>
    </shape>
  </item>
</selector>

可能吗?

如果您想继续使用github库,那么这可以帮助您

https://github.com/traex/rippleeffect

它具有称为app:rv_rippleDuration的属性,可让您控制持续时间。它还具有许多其他属性。必须尝试一下

编辑

这是 sunny 在stackoverflow上给出的一个很好的答案

/platforms/android-14/data/res/themes.xml下,您可以在要调整的持续时间内找到@android:integer/config_mediumAnimTime的来源。

现在,您可以创建自己的自定义绘制文件并根据您的要求更改时间。

<selector xmlns:android="http://schemas.android.com/apk/res/android"
      android:exitFadeDuration="@android:integer/config_mediumAnimTime">
<item android:state_window_focused="false" android:drawable="@color/transparent" />
<!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
<item android:state_focused="true"  android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/list_selector_background_disabled" />
<item android:state_focused="true"  android:state_enabled="false"                              android:drawable="@drawable/list_selector_background_disabled" />
<item android:state_focused="true"                                android:state_pressed="true" android:drawable="@drawable/list_selector_background_transition" />
<item android:state_focused="false"                               android:state_pressed="true" android:drawable="@drawable/list_selector_background_transition" />
<item android:state_focused="true"                                                             android:drawable="@drawable/list_selector_background_focused" />
<item android:drawable="@color/transparent" />

相关内容

  • 没有找到相关文章

最新更新