Searched refs:transition (Results 1 - 15 of 15) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/
H A DPageIndicator.java74 // Set the layout transition properties
75 LayoutTransition transition = getLayoutTransition();
76 transition.setDuration(175);
80 LayoutTransition transition = getLayoutTransition();
81 transition.enableTransitionType(LayoutTransition.APPEARING);
82 transition.enableTransitionType(LayoutTransition.DISAPPEARING);
83 transition.enableTransitionType(LayoutTransition.CHANGE_APPEARING);
84 transition.enableTransitionType(LayoutTransition.CHANGE_DISAPPEARING);
88 LayoutTransition transition = getLayoutTransition();
89 transition
[all...]
H A DPagedView.java912 final LayoutTransition transition = getLayoutTransition();
913 // If the transition is running defer updating max scroll, as some empty pages could
915 if (transition != null && transition.isRunning()) {
916 transition.addTransitionListener(new LayoutTransition.TransitionListener() {
919 public void startTransition(LayoutTransition transition, ViewGroup container,
923 public void endTransition(LayoutTransition transition, ViewGroup container,
926 if (!transition.isRunning()) {
927 transition.removeTransitionListener(this);
/packages/apps/Contacts/src/com/android/contacts/util/
H A DImageViewDrawableSetter.java72 * fade transition).
115 // Set up a transition from the previous Drawable to the new one.
119 final TransitionDrawable transition = new TransitionDrawable(beforeAndAfter);
120 mTarget.setImageDrawable(transition);
121 transition.startTransition(mDurationInMillis);
124 // Remember this for next time, so that we can transition from it to the
/packages/apps/Messaging/src/com/android/messaging/ui/contact/
H A DContactPickerFragment.java31 import android.transition.Explode;
32 import android.transition.Transition;
33 import android.transition.Transition.EpicenterCallback;
34 import android.transition.TransitionManager;
385 // individual list items (hidden initially), so that the transition
501 * Kicks off a scene transition that animates visibility changes of individual contact list
510 final Explode transition = new Explode();
513 transition.setDuration(UiUtils.COMPOSE_TRANSITION_DURATION);
514 transition.setInterpolator(UiUtils.EASE_IN_INTERPOLATOR);
515 transition
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DOnePaneController.java69 * still get feedback on conversation item tap in the transition from TL to CV.
239 final int transition = mConversationListNeverShown
249 transition, TAG_CONVERSATION_LIST, R.id.content_pane);
253 replaceFragment(conversationListFragment, transition, TAG_CONVERSATION_LIST,
352 * @param transition the transition to show
355 * @return transaction ID returned when the transition is committed.
357 private int replaceFragment(Fragment fragment, int transition, String tag, int anchor) { argument
360 fragmentTransaction.setTransition(transition);
H A DMailboxSelectionActivity.java351 private int replaceFragment(Fragment fragment, int transition, String tag) { argument
353 fragmentTransaction.setTransition(transition);
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
H A DBondStateMachine.java120 /* if incoming pairing, transition to pending state */
188 /* this is either none/bonded, remove and transition */
277 private boolean removeBond(BluetoothDevice dev, boolean transition) { argument
283 if (transition) transitionTo(mPendingCommandState);
291 private boolean createBond(BluetoothDevice dev, int transport, boolean transition) { argument
299 } else if (transition) {
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
H A DExpandingEntryCardView.java31 import android.transition.ChangeBounds;
32 import android.transition.Fade;
33 import android.transition.Transition;
34 import android.transition.Transition.TransitionListener;
35 import android.transition.TransitionManager;
36 import android.transition.TransitionSet;
856 public void onTransitionStart(Transition transition) {
861 public void onTransitionEnd(Transition transition) {
866 public void onTransitionCancel(Transition transition) {
870 public void onTransitionPause(Transition transition) {
[all...]
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
H A DStopwatchFragment.java367 public void startTransition(LayoutTransition transition, ViewGroup container,
380 long duration = transition.getDuration(LayoutTransition.DISAPPEARING);
402 public void endTransition(LayoutTransition transition, ViewGroup container,
668 // the layout transition animation for the spacers, make the changes, then re-enable
/packages/apps/DeskClock/src/com/android/deskclock/timer/
H A DTimerFragment.java35 import android.transition.AutoTransition;
36 import android.transition.Transition;
37 import android.transition.TransitionManager;
/packages/apps/DeskClock/src/com/android/deskclock/
H A DAlarmClockFragment.java47 import android.transition.AutoTransition;
48 import android.transition.Fade;
49 import android.transition.Transition;
50 import android.transition.TransitionManager;
51 import android.transition.TransitionSet;
658 * responsible for preparing the transition for any added/removed items.
/packages/apps/Exchange/src/com/android/exchange/utility/
H A DCalendarUtilities.java262 // Write a transition time into SYSTEMTIME data (via an offset into a byte array)
341 * Return a GregorianCalendar representing the first standard/daylight transition between a
347 * @return a GregorianCalendar representing the transition or null if none
452 * @param calendars an array of GregorianCalendar, set to a series of transition times in
539 * Fill the passed in GregorianCalendars arrays with DST transition information for this and
543 * the transition to daylight time
545 * the transition to standard time
564 // Find the first transition, and store
573 // Find the second transition, and store
679 * Find the next transition t
[all...]
/packages/apps/Settings/src/com/android/settings/
H A DDataUsageSummary.java703 final LayoutTransition transition = new LayoutTransition();
705 transition.setDuration(1500);
707 transition.setAnimateParentHierarchy(false);
708 return transition;
H A DSettingsActivity.java50 import android.transition.TransitionManager;
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
H A DComposeActivity.java3976 private int replaceFragment(Fragment fragment, int transition, String tag) { argument
3978 fragmentTransaction.setTransition(transition);

Completed in 1255 milliseconds