0
私はランチャーを書いています。 マシュマロアニメーションを表示するアクティビティを開始するにはどうすればよいですか?Marshmallowオープンアクティビティアニメーションを作成するにはどうすればよいですか?
私はAOSP Launcher3ソースを見て、だけでは、この使用することを発見した:
:その後、 task_open_enterアニメーションは次のようになりますstartActivity(context, optsBundle);
に供給を受ける
if (useLaunchAnimation) {
ActivityOptions opts = Utilities.isLmpOrAbove() ?
ActivityOptions.makeCustomAnimation(this, R.anim.task_open_enter, R.anim.no_anim) :
ActivityOptions.makeScaleUpAnimation(v, 0, 0, v.getMeasuredWidth(), v.getMeasuredHeight());
optsBundle = opts.toBundle();
}
を
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:background="#ff000000"
android:shareInterpolator="false"
android:zAdjustment="top">
<alpha
android:duration="167"
android:fillAfter="true"
android:fillBefore="true"
android:fillEnabled="true"
android:fromAlpha="0"
android:interpolator="@interpolator/decelerate_quart"
android:startOffset="0"
android:toAlpha="1.0" />
<translate
android:duration="417"
android:fillAfter="true"
android:fillBefore="true"
android:fillEnabled="true"
android:fromYDelta="110%"
android:interpolator="@interpolator/decelerate_quint"
android:startOffset="0"
android:toYDelta="0" />
</set>
残念ながら、これらは私が探しているマシュマロアニメーションと同じではありません
(GIFが遅くなる3回)
を以下に示すように、のために? – CBeTJlu4ok