Searched defs:enterResId (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/v4/jellybean/android/support/v4/app/
H A DActivityOptionsCompatJB.java28 int enterResId, int exitResId) {
30 ActivityOptions.makeCustomAnimation(context, enterResId, exitResId));
27 makeCustomAnimation(Context context, int enterResId, int exitResId) argument
/frameworks/support/v4/java/android/support/v4/app/
H A DActivityOptionsCompat.java38 * @param enterResId A resource ID of the animation resource to use for the
46 int enterResId, int exitResId) {
49 ActivityOptionsCompatJB.makeCustomAnimation(context, enterResId, exitResId));
45 makeCustomAnimation(Context context, int enterResId, int exitResId) argument
/frameworks/support/customtabs/src/android/support/customtabs/
H A DCustomTabsIntent.java261 * @param enterResId Resource ID of the "enter" animation for the browser.
265 @NonNull Context context, @AnimRes int enterResId, @AnimRes int exitResId) {
267 ActivityOptions.makeCustomAnimation(context, enterResId, exitResId).toBundle();
275 * @param enterResId Resource ID of the "enter" animation for the application.
279 @NonNull Context context, @AnimRes int enterResId, @AnimRes int exitResId) {
281 ActivityOptions.makeCustomAnimation(context, enterResId, exitResId).toBundle();
264 setStartAnimations( @onNull Context context, @AnimRes int enterResId, @AnimRes int exitResId) argument
278 setExitAnimations( @onNull Context context, @AnimRes int enterResId, @AnimRes int exitResId) argument
/frameworks/base/core/java/android/app/
H A DActivityOptions.java190 * @param enterResId A resource ID of the animation resource to use for
198 int enterResId, int exitResId) {
199 return makeCustomAnimation(context, enterResId, exitResId, null, null);
208 * @param enterResId A resource ID of the animation resource to use for
222 int enterResId, int exitResId, Handler handler, OnAnimationStartedListener listener) {
226 opts.mCustomEnterResId = enterResId;
197 makeCustomAnimation(Context context, int enterResId, int exitResId) argument
221 makeCustomAnimation(Context context, int enterResId, int exitResId, Handler handler, OnAnimationStartedListener listener) argument

Completed in 135 milliseconds