HomeSort by relevance Sort by last modified time
    Searched refs:expandedImageView (Results 1 - 4 of 4) sorted by null

  /developers/build/prebuilts/gradle/WearSpeakerSample/wear/src/main/java/com/example/android/wearable/speaker/
UIAnimation.java 39 private ImageView expandedImageView;
50 expandedImageView = expandedView;
83 expandedImageView.setImageResource(imageResId);
111 expandedImageView.setVisibility(View.VISIBLE);
113 expandedImageView.setPivotX(0f);
114 expandedImageView.setPivotY(0f);
118 .ofFloat(expandedImageView, View.X, startBounds.left, finalBounds.left)).with(
119 ObjectAnimator.ofFloat(expandedImageView, View.Y, startBounds.top, finalBounds
121 ObjectAnimator.ofFloat(expandedImageView, View.SCALE_X, startScale, 1f))
122 .with(ObjectAnimator.ofFloat(expandedImageView, View.SCALE_Y, startScale, 1f))
    [all...]
  /developers/samples/android/wearable/wear/WearSpeakerSample/wear/src/main/java/com/example/android/wearable/speaker/
UIAnimation.java 39 private ImageView expandedImageView;
50 expandedImageView = expandedView;
83 expandedImageView.setImageResource(imageResId);
111 expandedImageView.setVisibility(View.VISIBLE);
113 expandedImageView.setPivotX(0f);
114 expandedImageView.setPivotY(0f);
118 .ofFloat(expandedImageView, View.X, startBounds.left, finalBounds.left)).with(
119 ObjectAnimator.ofFloat(expandedImageView, View.Y, startBounds.top, finalBounds
121 ObjectAnimator.ofFloat(expandedImageView, View.SCALE_X, startScale, 1f))
122 .with(ObjectAnimator.ofFloat(expandedImageView, View.SCALE_Y, startScale, 1f))
    [all...]
  /development/samples/browseable/WearSpeakerSample/src/com.example.android.wearable.speaker/
UIAnimation.java 39 private ImageView expandedImageView;
50 expandedImageView = expandedView;
83 expandedImageView.setImageResource(imageResId);
111 expandedImageView.setVisibility(View.VISIBLE);
113 expandedImageView.setPivotX(0f);
114 expandedImageView.setPivotY(0f);
118 .ofFloat(expandedImageView, View.X, startBounds.left, finalBounds.left)).with(
119 ObjectAnimator.ofFloat(expandedImageView, View.Y, startBounds.top, finalBounds
121 ObjectAnimator.ofFloat(expandedImageView, View.SCALE_X, startScale, 1f))
122 .with(ObjectAnimator.ofFloat(expandedImageView, View.SCALE_Y, startScale, 1f))
    [all...]
  /development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
ZoomActivity.java 116 final ImageView expandedImageView = (ImageView) findViewById(R.id.expanded_image);
117 expandedImageView.setImageResource(imageResId);
158 expandedImageView.setVisibility(View.VISIBLE);
162 expandedImageView.setPivotX(0f);
163 expandedImageView.setPivotY(0f);
169 .play(ObjectAnimator.ofFloat(expandedImageView, View.X, startBounds.left,
171 .with(ObjectAnimator.ofFloat(expandedImageView, View.Y, startBounds.top,
173 .with(ObjectAnimator.ofFloat(expandedImageView, View.SCALE_X, startScale, 1f))
174 .with(ObjectAnimator.ofFloat(expandedImageView, View.SCALE_Y, startScale, 1f));
194 expandedImageView.setOnClickListener(new View.OnClickListener()
    [all...]

Completed in 3063 milliseconds