0

如何在我的自定义视图中添加像涟漪一样的触摸反馈?

我可以检测到触摸事件,但我希望在我的自定义视图被触摸时像涟漪一样简单。那可能吗?

提前致谢。

4

2 回答 2

0

使用这个compile 'com.balysv:material-ripple:1.0.2',把你的自定义小部件放在里面MaterialRippleLayout在这里

  <com.balysv.materialripple.MaterialRippleLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="5dp"
                app:mrl_rippleAlpha="0.3"
                android:layout_weight="2"
                app:mrl_rippleColor="#80FF5722"
                app:mrl_rippleDimension="10dp"
                app:mrl_rippleHover="true"
                app:mrl_rippleOverlay="true">
            <com.your.custome.view
               />
            </com.balysv.materialripple.MaterialRippleLayout>

您也可以以编程方式使用它

MaterialRippleLayout.on(view)
           .rippleColor(Color.BLACK)
           .create();
于 2018-05-08T09:52:24.017 回答
0

您只需为您的视图播放一个 xml 动画。

Animation anim = AnimationUtils.loadAnimation(getContext(), R.anim.my_amazing_ripple_effect);

myCustomView.startAnimation(anim);

您可以在互联网上找到许多 xml 动画,但您也可以创建自己的(我强烈推荐)。

让我知道这是否有帮助。


更新:

示例代码:

View myView = ...some view; // grab your view here

myView.setOnClickListener( v -> { // this is a lambda expression. It is only used to shorten the code and improve its legibility. You could also use myView.setOnClickListener(new View.OnClickListener() { }

    Animation anim = AnimationUtils.loadAnimation(getContext(), R.anim.my_amazing_ripple_effect);

    myView.startAnimation(anim);

});
于 2018-05-08T09:51:29.620 回答