Questions tagged [nineoldandroids]

Android library for using the Honeycomb (Android 3.0) animation API on all versions of the platform back to 1.0

Animation prior to Honeycomb was very limited in what it could accomplish so in Android 3.x a new API was written. With only a change in imports, we are able to use a large subset of the new-style animation with exactly the same API.

This library also includes support for animating rotation, translation, alpha, and scale on platforms prior to Honeycomb

60 questions
0
votes
1 answer

flipping a tile in android

In my layout, I am having a set of tiles(Something similar to windows phone home screen) .I am trying to flip the tile to show more content. I have taken a look at card flipping, but then it flips the entire fragment.I want it to flip a part of the…
Prasanna Aarthi
  • 3,439
  • 4
  • 26
  • 48
0
votes
1 answer

how to overflow child items from an element in android?

I have a little layout problem, im my app, i need to anim some elements, for example, scaling imageView from 0 to 1. the problem is: i hope make this using easings functions, but in andriod, and element never causes "overflow", then if use an bounce…
0
votes
1 answer

Xamarin.Android type swizzling

Has anyone been able to get Xamarin.Forms to work on API levels pre-11? ValueAnimator doesn't exist, and although this is provided by Xamarin.NineOldAndroids the Xamarin implementation doesn't reference that namespace. Is there a way to use…
user244343
0
votes
2 answers

How to perform an action just after animation of AnimatorSet stops?

I have placed the following code in a for loop: set8.playTogether( ObjectAnimator.ofFloat(ball4, "translationX", x1, xn), ObjectAnimator.ofFloat(ball4, "translationY", y1, yn), ObjectAnimator.ofFloat(ball8, "translationX", xn,…
0
votes
1 answer

How would I do this Fragment animation on API level 9 with nineoldandroids?

I am trying to execute an animation in which I have two fragments stacked on top of each other. The top fragment is a details fragment. the bottom fragment is a menu list view fragment. I did this by creating two overlapping framelayouts in the…
feilong
  • 1,564
  • 3
  • 16
  • 22
0
votes
1 answer

How to use circular progress button library on android 4.0 lower?

I want to use circular-progress-button on android 2.2 or above. But there is a error on Property class that say minimum sdk must be 14. I don't want to check sdk version and then use or not. Or even is there any alternative library like this?
Dr.jacky
  • 3,341
  • 6
  • 53
  • 91
0
votes
1 answer

How to Ends the AnimatorSet by using nineoldandroid?

I am using nineoldandroid for Animation. My codes as follow: Button mTarget; Animator mTargetAnim; AnimatorSet mTargetScaleAnimSet; private void createAnimation() { if (mTargetAnim == null) { ObjectAnimator yAnim =…
see2851
  • 627
  • 1
  • 9
  • 13
0
votes
1 answer

How to dynamically change accelerated While the animation running in Android?

I am using nineoldandroid. Q: How to change the animation playback time after the animation begins to accelerate animation ends? In other words,How to change the duration?
see2851
  • 627
  • 1
  • 9
  • 13
0
votes
0 answers

nineoldandroids exception util

I am having an issue using nineoldandroids. My Logcat is: 06-17 18:46:59.810: E/AndroidRuntime(1576): FATAL EXCEPTION: main 06-17 18:46:59.810: E/AndroidRuntime(1576): java.lang.StackOverflowError 06-17 18:46:59.810: E/AndroidRuntime(1576): at…
user3733523
  • 151
  • 1
  • 2
  • 11
0
votes
2 answers

NineOldAndroids: why I'm getting NoClassDefFound about ObjectAnimator?

Disclaimer : I imported correctly the NineOldAndroids as a project also added it correctly to the build -ath of my project. Finally I imported the ObjectAnimator and the other packages correctly from com.nineoldandroids.animation. My goal is to…
operator
  • 247
  • 1
  • 3
  • 15
0
votes
1 answer

Setting text between animations

I have problem with setting text between animations (fade out text then change it and fade in) using NineOldAndroids library. I have tried to set it like this: ObjectAnimator.ofFloat(TextView, "alpha", 1, 0.5f,…
Stramek
  • 305
  • 1
  • 3
  • 14
0
votes
1 answer

How to do rotation animation on a RelativeLayout

I need to do a rotate animation on a RelativeLayout, I've used NineOldAndroid library for animation: View v = findViewById(R.id.wrap_btnSelect); ObjectAnimator t1 = ObjectAnimator.ofFloat( v, "rotation", 0.0f,…
0
votes
1 answer

NineOldAndroids translating view doesn't change position

I am using NineOldAndroids and using setTranslationY and setTranslationX to change the views position (after applying AnimatorProxy). Only problem is when I change the view's position the button is only visually changing its location however I still…
ahmad
  • 2,149
  • 4
  • 21
  • 38
0
votes
1 answer

difference between ActionBarSherlock and NineOldAndroids for ObjectAnimator on Android <11

I have a test activity which should do very simple task : inflate the view, and move it on the screen with ObjectAnimator. This works perfectly with all devices (OS 2.2+ - OS4.2), if I use the NineOldAndroids library. However, if I change the…
0
votes
0 answers

Requesting a ShowcaseView example

I've been hearing a lot about Espiandev ShowcaseView as a good tutorial tool for Android apps, but unfortunately I couldn't find any examples of its implementation but the sample provided with the library. No matter what I tried, I could not get…
1 2 3
4