Questions tagged [circularreveal]

40 questions
10
votes
2 answers

Circular Reveal Android Compat With Design Library 28

How To Create A Circular Reveal Animation In Android With Design Library Version 28 I Saw few Classes Which They Are Have Reveal Word Like This Items…
10
votes
1 answer

Circular Reveal not working when FAB gravity is bottom

I am working on morphing a floating action button (FAB) to a toolbar and things work smoothly and perfectly with the following code: layout file:
Saurabh
  • 1,055
  • 14
  • 38
6
votes
1 answer

Circular Reveal animation onTouch Android

I'm trying to implement a circular reveal animation which consist to reveal the view according the user finger when he's touching the view. First, my view is inside an infinite circular reveal loop to keep the rounded aspect as long as the user do…
nicover
  • 2,213
  • 10
  • 24
6
votes
1 answer

Reversing circular revel animation

I want to make a simple animation that I'll try to describe. At 1st there is this smallish circle in the middle of screen, then when you press it circular animation reveals a rectangular Button. I don't know if I did it the best way possible but…
etrusks
  • 363
  • 3
  • 12
6
votes
2 answers

Failed to resolve: com.github.ozodrukh:CircularReveal:1.1.0

I'm trying to import this library (https://github.com/ozodrukh/CircularReveal) to my project by writing: compile 'com.github.ozodrukh:CircularReveal:1.1.0@aar' But I get this error : Error:(25, 13) Failed to resolve:…
Colum Srečko
  • 225
  • 2
  • 10
5
votes
1 answer

How can I turn my makeSceneTransitionAnimation to a circle, and not rectangle?

I am currently trying to create a circular transition between my FAB and another Activity. From what I understodd in the documentation, I should use makeSceneTransitionAnimation in a similar way to this: public void onFabClicked(View v){ try { …
Waza_Be
  • 39,407
  • 49
  • 186
  • 260
4
votes
1 answer

How to change createCircularReveal() color?

Like the title said, I'm looking a easy way to customize the color used in reveal. I want to use official code if it's possible (avoiding 3rd party libraries). I'm using the usual code: Animator anim = ViewAnimationUtils.createCircularReveal(myView,…
MiguelHincapieC
  • 5,445
  • 7
  • 41
  • 72
3
votes
1 answer

Reveal effect with android.support.design.circularreveal.cardview.CircularRevealCardView

I wanted to create a reveal effect like WhatsApp's attachment feature. I while looking around to create something custom, I came across Android's android.support.design.circularreveal.cardview.CircularRevealCardView view available already without…
2
votes
1 answer

Changing the color of the circular reveal animation

I added circular reveal animation to my fab button but instead of changing the fragment color to different color, I want to change the color of the animation because I want my next fragment to be a white background. I tried to change the fragment…
2
votes
1 answer

CircularReveal IlegalStateException

I have a button which when clicked should do the reveal animation stuff.I get the Illegal State Exception when clicked.It says "Cannot start this animator on a detached view!".No idea what caused this.I referred to similar issues but didn't help me.…
jobin
  • 1,489
  • 5
  • 27
  • 52
2
votes
0 answers

How to remove flicker from exit reveal animation and make it reveal from point of touch

What I want to achieve are these: When an item in the recyclerView is clicked, the details activity should reveal, starting from the point that my finger touches the screen. When I touch the up arrow button or back button, the details activity…
X09
  • 3,827
  • 10
  • 47
  • 92
2
votes
3 answers

Android: specify circular reveal animation starting position?

I currently have a circular reveal animation that starts from the very right of the toolbar. I want the initial circle center to start from the "search" icon which had me struggle to find an answer. I tried altering the cx and xy values and am…
Lord Goderick
  • 965
  • 2
  • 14
  • 32
2
votes
2 answers

Android CircularReveal library View visibility bug

I use this libary to create CircularReveal animation on pre-Lollipop devices. The problem is in hiding View with animation. Animation is performed as well, but after animation end, View become visible for a second and then disappears. How can I…
Roman Svyatnenko
  • 699
  • 12
  • 27
2
votes
1 answer

Custom reveal effect is showing below the WebView Android not revealing the web view

I am using Circular Reveal Library (ttps://github.com/ozodrukh/CircularReveal) to reveal view in an activity containing web view, this animation works without any problem but it is drawing below the web view. The WebView does not revealed with its…
Darpan Kulkarni
  • 1,362
  • 1
  • 17
  • 36
2
votes
4 answers

How to create a "reveal" effect that's not circular?

Android has a nice reveal animation (called "CircularReveal") that has a circle shape (link here and here) . I was wondering: is it possible to do it in other shapes too? For example, reveal a view from top to bottom, in a rectangle shape, as…
android developer
  • 114,585
  • 152
  • 739
  • 1,270
1
2 3