Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 686d972e authored by Chris Craik's avatar Chris Craik
Browse files

Fix NPE in RenderNodeAnimator ALPHA when used outside ViewPropertyAnimator

Bug: 33797688
Test: new RenderNodeAnimatorTest passes

Other clients use RenderNodeAnimator now, so call
ensureTransformationInfo to be safe.

Change-Id: I837d6f5b00bb368d2bbf77b94d4c19a8426b9927
parent 202b862b
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -200,8 +200,7 @@ public class RenderNodeAnimator extends Animator {
        // in mTransformationInfo instead of in RenderNode, so we need to update
        // it with the final value here.
        if (mRenderProperty == RenderNodeAnimator.ALPHA) {
            // Don't need null check because ViewPropertyAnimator's
            // ctor calls ensureTransformationInfo()
            mViewTarget.ensureTransformationInfo();
            mViewTarget.mTransformationInfo.mAlpha = mFinalValue;
        }

+2 −1
Original line number Diff line number Diff line
@@ -3394,7 +3394,8 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
        float mTransitionAlpha = 1f;
    }
    TransformationInfo mTransformationInfo;
    /** @hide */
    public TransformationInfo mTransformationInfo;
    /**
     * Current clip bounds. to which all drawing of this view are constrained.
+7 −0
Original line number Diff line number Diff line
@@ -1107,6 +1107,13 @@
            </intent-filter>
        </activity>

        <activity android:name="android.app.Activity" android:label="Empty Activity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" />
            </intent-filter>
        </activity>

        <!-- Activity-level metadata -->
        <meta-data android:name="com.android.frameworks.coretests.isApp" android:value="true" />
        <meta-data android:name="com.android.frameworks.coretests.string" android:value="foo" />
+59 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2017 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package android.view;

import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;

import android.app.Activity;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.annotation.UiThreadTest;
import android.support.test.filters.MediumTest;
import android.support.test.rule.ActivityTestRule;

import org.junit.Rule;
import org.junit.Test;

@MediumTest
public class RenderNodeAnimatorTest  {
    @Rule
    public ActivityTestRule<Activity> mActivityRule = new ActivityTestRule<>(Activity.class);

    private Context getContext() {
        return InstrumentationRegistry.getTargetContext();
    }

    private Activity getActivity() {
        return mActivityRule.getActivity();
    }

    @UiThreadTest
    @Test
    public void testAlphaTransformationInfo() throws Throwable {
        View view = new View(getContext());

        // attach the view, since otherwise the RenderNodeAnimator won't accept view as target
        getActivity().setContentView(view);

        RenderNodeAnimator anim = new RenderNodeAnimator(RenderNodeAnimator.ALPHA, 0.5f);
        anim.setTarget(view);
        assertNull(view.mTransformationInfo);
        anim.start(); // should initialize mTransformationInfo
        assertNotNull(view.mTransformationInfo);
    }
}