ozodrukh / CircularReveal

Lollipop ViewAnimationUtils.createCircularReveal for everyone 4.0+
MIT License
2.43k stars 391 forks source link

Problems with Activity containing WebView #51

Open ghost opened 9 years ago

ghost commented 9 years ago

The reveal effect is not showing above the WebView, but it is below the web view in an activity.

XML:

<?xml version="1.0" encoding="utf-8"?>
<io.codetail.widget.RevealFrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:id="@+id/myLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.v7.widget.CardView
            android:id="@+id/myCard"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:cardUseCompatPadding="true"
            app:contentPadding="5dp">

            <WebView
                android:id="@+id/myWeb"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" />

        </android.support.v7.widget.CardView>

    </LinearLayout>

</io.codetail.widget.RevealFrameLayout>

ACTIVITY:

containerX = (myLayout.getLeft() + myLayout.getRight()) / 2;
    containerY = (myLayout.getTop() + myLayout.getBottom()) / 2;
    finalRadius = Math.max(myLayout.getWidth(), myLayout.getHeight());

    animator = ViewAnimationUtils.createCircularReveal(myLayout, containerX, containerY, 0, finalRadius);
    animator.setDuration(1000);
    animator.addListener(openAnimatorListener);
    animator.start();
ayaseruri commented 8 years ago

i have the same problem

t2314862168 commented 8 years ago

@MrDarpan @ayaseruri Did you solved the problem, i also have the same problem

ayaseruri commented 8 years ago

do not