FloatingText
FloatingText copied to clipboard
How to make a Floating Image similarly
Is there anyway to easily make a floating image view like this textview
@lovearthhome I have finished the FloatingView develop,so you can have a try.
If you use FloatingView ,floating Image is very easy.
Floating floating = new Floating(this);
ImageView imageView = new ImageView(MainActivity.this);
...
FloatingElement floatingElement = new FloatingBuilder()
.anchorView(v)
.targetView(imageView)
.floatingTransition(new PlaneFloating())
.build();
floating.startFloating(floatingElement);