GithubHelp home page GithubHelp logo

easyandroidanimations's People

Contributors

jitpack-io avatar neesiyao avatar pgq10240817 avatar umairvatao avatar yapdianhao avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

easyandroidanimations's Issues

Please provide a new jar

can you provide a new .jar File with the changes from "Removed redundant resources and app config" and also the Fix from Bug #8 ?

Thank you

License?

There is no license associated to this library, so it can not be used in practice. Can you add an Apache 2.0 or MIT license plus a copyright line to allow usage and referencing? Thanks!

How get translation float

I'm using SlideOutUnderneathAnimation but I want to know how get translation for reduce height of its container and when show, expand height too. Thanks.

New GitHub release

Hi there

It appears that version 0.8 had redundant resources that were removed later. Would be great to have a new GitHub release so that its easier to grab the latest changes.

Best,

Update Build Tools

Build Tools can be updated to 22.0.1 otherwise some may have conflicts without using the "ignore" workaround.

Library not working for me

I tried to use this library in my project. I added your library dependency and tried to use the following code
new BounceAnimation(yourView)
.setBounceDistance(50)
.setBounces(5)
.setDuration(500)
.animate();
with my imageview but it is giving me following error

04-28 12:07:50.211: E/AndroidRuntime(487): FATAL EXCEPTION: main
04-28 12:07:50.211: E/AndroidRuntime(487): java.lang.NoSuchFieldError: android.view.View.SCALE_X
04-28 12:07:50.211: E/AndroidRuntime(487): at com.easyandroidanimations.library.ScaleInAnimation.getAnimatorSet(ScaleInAnimation.java:48)
04-28 12:07:50.211: E/AndroidRuntime(487): at com.easyandroidanimations.library.ParallelAnimator.animate(ParallelAnimator.java:58)
04-28 12:07:50.211: E/AndroidRuntime(487): at com.example.nanocarnavigator.MainActivity.onCreate(MainActivity.java:26)
04-28 12:07:50.211: E/AndroidRuntime(487): at android.app.Activity.performCreate(Activity.java:4397)
04-28 12:07:50.211: E/AndroidRuntime(487): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1048)
04-28 12:07:50.211: E/AndroidRuntime(487): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1779)
04-28 12:07:50.211: E/AndroidRuntime(487): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1831)
04-28 12:07:50.211: E/AndroidRuntime(487): at android.app.ActivityThread.access$500(ActivityThread.java:122)
04-28 12:07:50.211: E/AndroidRuntime(487): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1024)
04-28 12:07:50.211: E/AndroidRuntime(487): at android.os.Handler.dispatchMessage(Handler.java:99)
04-28 12:07:50.211: E/AndroidRuntime(487): at android.os.Looper.loop(Looper.java:132)
04-28 12:07:50.211: E/AndroidRuntime(487): at android.app.ActivityThread.main(ActivityThread.java:4123)
04-28 12:07:50.211: E/AndroidRuntime(487): at java.lang.reflect.Method.invokeNative(Native Method)
04-28 12:07:50.211: E/AndroidRuntime(487): at java.lang.reflect.Method.invoke(Method.java:491)
04-28 12:07:50.211: E/AndroidRuntime(487): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:841)
04-28 12:07:50.211: E/AndroidRuntime(487): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:599)
04-28 12:07:50.211: E/AndroidRuntime(487): at dalvik.system.NativeStart.main(Native Method)

Here is xml of mainactivity

<ImageView
    android:id="@+id/img"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scaleType="fitXY"
    android:src="@drawable/screen1"
   />

Can you help me why it is giving exception?

TransferAnimation retain orignal view and transfer over other layouts

I am using transfer animation on an ImageView in a grid item, After the transfer animation is completed I want the Image to be back in the gridView. Is there is better solution then transfer animation or any work around to clone the image view and use for transfer then destroy it.

Secondly, when transfer animation runs on GridView item, it goes below other grid items, it should be on transferring over all other view in the the layout. How to fix that ?

Library

Please set dependencies compile for Android Studio.
Ty!

After using an animation on a CardView, it then floats over the actionbar.

I posted the implementation and images showing the issue. I think the images show the issue better than I can explain it. It is probably something on my part but cant seem to fix it.

private boolean isFinished = false;
card2 = (CardView) findViewById(R.id.card2);
editName.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        //TODO     swipeLayout.open();
        card2.setVisibility(View.VISIBLE);
        new FlipVerticalToAnimation(card1).setFlipToView(card2)
                .setInterpolator(new LinearInterpolator()).animate();
        isFinished = true;
    }
});

This is the card before the animation.

screenshot_2015-02-02-12-32-15

This is the card after the animation.

screenshot_2015-02-02-12-32-25

Gradle

Hi,
is there a reason this project isn't using gradle build system?

Thanks,
Igor

FlipToHorizontal Animation

When i am using FlipToHorizontal Animation inside Scroll view it overlaps header and all view which i added inside Scroll view are goes out of its parent. Is there any limitation of this animation that we cant use it inside scroll view . Or may be a solution ..

Animate view below another view

Hi,
I using this library to animate an exit of a horizontal progress bar.
The current structure of the layout is a toolbar at the top of the screen, below it, I have a fragment container.
When playing the exit animation, the view animated exits on top of the toolbar.
My goal is to animate the exit of progress bar below the toolbar/not taking into consideration the space of screen that the toolbar takes.
Any suggestions?

How to set `RepeatMode` and `RepeatCount`

How can I repeat an animation Infinite times or set the repeat mode to Inverse. Like we do

Animation anim = new AlphaAnimation(0.0f, 1.0f);
        anim.setDuration(duration);
        anim.setStartOffset(offset);
        anim.setRepeatMode(Animation.REVERSE);
        anim.setRepeatCount(Animation.INFINITE);
        view.startAnimation(anim);

Problem with Andorid API 7.0

I have a problem while animate simple panel from right to left it animate correctly but just one time only, after try to do it again and again nothing happen. this is just with android API 7.0. before this every thing work perfectly.

i am getting error at when i call .animate(); method

java.lang.UnsupportedOperationException: removeView(View) is not supported in AdapterView
at android.widget.AdapterView.removeView(AdapterView.java:505)
at com.easyandroidanimations.library.ExplodeAnimation.animate(ExplodeAnimation.java:130)
at com.example.notebook.NoteBook$6.onClick(NoteBook.java:307)

Android Manifest build error

When i follow the guide to include the project, it builds with error:

Error:(33, 9) Attribute application@theme value=(@style/Theme.MyAppTheme) from AndroidManifest.xml:33:9
Error:(33, 9) Execution failed for task ':app:processDebugManifest'.

Manifest merger failed : Attribute application@theme value=(@style/Theme.MyAppTheme) from AndroidManifest.xml:33:9
is also present at com.github.2359media:EasyAndroidAnimations:0.8:15:9 value=(@style/AppTheme)
Suggestion: add 'tools:replace="android:theme"' to element at AndroidManifest.xml:28:5 to override

adding 'tools:replace="android:theme" would not work

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.