HomeSort by relevance Sort by last modified time
    Searched refs:animate (Results 51 - 75 of 456) sorted by null

1 23 4 5 6 7 8 91011>>

  /development/samples/browseable/SpeedTracker/Wearable/src/com.example.android.wearable.speedtracker/ui/
SpeedPickerLayout.java 68 public void onCenterPosition(boolean animate) {
74 public void onNonCenterPosition(boolean animate) {
  /development/samples/browseable/Timer/src/com.example.android.wearable.timer/
WearableListItemLayout.java 58 public void onCenterPosition(boolean animate) {
64 public void onNonCenterPosition(boolean animate) {
  /frameworks/base/tests/RenderThreadTest/src/com/example/renderthread/
SubActivity.java 48 child.animate().translationX(0).setDuration(MainActivity.DURATION);
52 bg.animate().alpha(1f).setDuration(MainActivity.DURATION);
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/
PermissionsFrameFragment.java 68 protected void setLoading(boolean loading, boolean animate) {
69 setLoading(loading, animate, false);
72 private void setLoading(boolean loading, boolean animate, boolean force) {
76 // If there is no created view, there is no reason to animate.
77 animate = false;
80 setViewShown(mPrefsView, !loading, animate);
83 setViewShown(mLoadingView, loading, animate);
88 private void setViewShown(final View view, boolean shown, boolean animate) {
89 if (animate) {
  /frameworks/base/tests/Assist/src/com/android/test/assist/
AssistInteractionSession.java 122 mScrim.animate()
127 mBackground.animate()
154 mCard1.animate()
159 mCard2.animate()
166 mNavbarScrim.animate()
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
ConversationActivityUiState.java 33 void onConversationContactPickerUiStateChanged(int oldState, int newState, boolean animate);
207 private void performUiStateUpdate(final int conversationContactState, final boolean animate) {
215 notifyOnOverallUiStateChanged(oldState, mConversationContactUiState, animate);
221 final int oldState, final int newState, final boolean animate) {
231 mHost.onConversationContactPickerUiStateChanged(oldState, newState, animate);
SimSelectorView.java 88 public void showOrHide(final boolean show, final boolean animate) {
96 if (animate) {
100 animate().alpha(mShow ? 1.0f : 0.0f)
115 if (animate) {
  /frameworks/base/core/java/android/widget/
ViewAnimator.java 147 * @param animate Whether or not to use the in and out animations, defaults
150 void showOnly(int childIndex, boolean animate) {
155 if (animate && mInAnimation != null) {
161 if (animate && mOutAnimation != null && child.getVisibility() == View.VISIBLE) {
177 final boolean animate = (!mFirstTime || mAnimateFirstTime);
178 showOnly(childIndex, animate);
257 * Returns the current animation used to animate a View that enters the screen.
269 * Specifies the animation used to animate a View that enters the screen.
281 * Returns the current animation used to animate a View that exits the screen.
293 * Specifies the animation used to animate a View that exit the screen
    [all...]
CalendarViewMaterialDelegate.java 99 public void setDate(long date, boolean animate, boolean center) {
100 mDayPickerView.setDate(date, animate);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
KeyguardStatusBarView.java 179 public void setKeyguardUserSwitcherShowing(boolean showing, boolean animate) {
181 if (animate) {
198 mSystemIconsSuperContainer.animate()
206 mMultiUserSwitch.animate()
222 mMultiUserSwitch.animate()
238 mSystemIconsSuperContainer.animate().cancel();
239 mMultiUserSwitch.animate().cancel();
StatusBarIconController.java 248 public void hideSystemIconArea(boolean animate) {
249 animateHide(mSystemIconArea, animate);
252 public void showSystemIconArea(boolean animate) {
253 animateShow(mSystemIconArea, animate);
256 public void hideNotificationIconArea(boolean animate) {
257 animateHide(mNotificationIconArea, animate);
260 public void showNotificationIconArea(boolean animate) {
261 animateShow(mNotificationIconArea, animate);
287 private void animateHide(final View v, boolean animate) {
288 v.animate().cancel()
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
CameraSwitcher.java 205 public void setOrientation(int degree, boolean animate) {
206 super.setOrientation(degree, animate);
211 iv.setOrientation(degree, animate);
252 mPopup.animate()
259 animate().alpha(1f).setDuration(SWITCHER_POPUP_ANIM_DURATION)
282 mPopup.animate()
289 animate().alpha(0f).setDuration(SWITCHER_POPUP_ANIM_DURATION)
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
ImageViewTarget.java 75 if (glideAnimation == null || !glideAnimation.animate(resource, this)) {
  /frameworks/base/libs/hwui/
AnimatorManager.h 49 uint32_t animate(TreeInfo& info);
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
OverlayTest.java 44 fadingButton.animate().alpha(0).setDuration(1000).withEndAction(new Runnable() {
  /packages/apps/Dialer/src/com/android/dialer/widget/
ActionBarController.java 35 slideActionBar(true /* slideUp */, false /* animate */);
40 slideActionBar(true /* slideUp */, false /* animate */);
73 mSearchBox.expand(true /* animate */, true /* requestFocus */);
87 mSearchBox.collapse(true /* animate */);
94 slideActionBar(false /* slideUp */, false /* animate */);
96 slideActionBar(true /* slideUp */, false /* animate */);
117 mSearchBox.expand(false /* animate */, false /* requestFocus */);
119 slideActionBar(false /* slideUp */, true /* animate */);
135 slideActionBar(true /* slideUp */, true /* animate */);
142 public void slideActionBar(boolean slideUp, boolean animate) {
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
KubeRenderer.java 31 void animate(); method in interface:KubeRenderer.AnimationCallback
41 mCallback.animate();
  /development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
CrossfadeActivity.java 115 // Animate the "show" view to 100% opacity, and clear any animation listener set on
120 showView.animate()
125 // Animate the "hide" view to 0% opacity. After the animation ends, set its visibility
127 hideView.animate()
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
StackScrollerDecorView.java 71 * Animate the text to a new visibility.
79 // Animate text
88 mContent.animate()
133 mContent.animate().cancel();
NotificationContentView.java 163 mContractedChild.animate().cancel();
166 mExpandedChild.animate().cancel();
169 mHeadsUpChild.animate().cancel();
195 mContractedChild.animate().cancel();
201 selectLayout(false /* animate */, true /* force */);
202 mContractedWrapper.setDark(mDark, false /* animate */, 0 /* delay */);
208 mExpandedChild.animate().cancel();
214 selectLayout(false /* animate */, true /* force */);
220 mHeadsUpChild.animate().cancel();
226 selectLayout(false /* animate */, true /* force */)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
VolumeDialogMotion.java 110 mDialogView.animate().cancel();
130 mDialogView.animate()
174 mContents.animate()
186 mChevron.animate()
199 mDialogView.animate().cancel();
203 mContents.animate().cancel();
207 mChevron.animate().cancel();
210 mDialogView.animate()
  /frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
AbstractLayoutTest.java 47 animate(v);
56 public void animate(View v) { method in class:AbstractLayoutTest
  /frameworks/support/design/honeycomb-mr1/android/support/design/widget/
FloatingActionButtonHoneycombMr1.java 43 mView.animate()
77 mView.animate()
  /packages/apps/DeskClock/src/com/android/deskclock/
BaseActivity.java 40 * Duration in millis to animate changes to the background color.
61 setBackgroundColor(backgroundColor, false /* animate */);
77 setBackgroundColor(Utils.getCurrentHourColor(), true /* animate */);
83 setBackgroundColor(Utils.getCurrentHourColor(), true /* animate */);
101 // Save the background color so we can animate the change when the activity is restored.
111 * @param animate {@code true} if the change should be animated
113 protected void setBackgroundColor(int color, boolean animate) {
120 if (animate) {
  /frameworks/support/design/src/android/support/design/widget/
TextInputLayout.java 214 private void updateLabelVisibility(boolean animate) {
227 collapseHint(animate);
230 expandHint(animate);
293 ViewCompat.animate(mErrorView).cancel();
350 ViewCompat.animate(mErrorView)
367 ViewCompat.animate(mErrorView)
461 private void collapseHint(boolean animate) {
465 if (animate && mHintAnimationEnabled) {
472 private void expandHint(boolean animate) {
476 if (animate && mHintAnimationEnabled)
    [all...]

Completed in 891 milliseconds

1 23 4 5 6 7 8 91011>>