Questions tagged [android-kenburnsview]

KenBurnsView is an Android library that provides an extension to ImageView that creates an immersive experience by animating its drawable using the Ken Burns Effect.

KenBurnsView is an Android library that provides an extension to ImageView that creates an immersive experience by animating its drawable using the Ken Burns Effect.

https://github.com/flavioarfaria/KenBurnsView

22 questions
17
votes
5 answers

Error:Cannot change dependencies of configuration ':app:_debugAnnotationProcessor' after it has been resolved

Gradle Project Refresh Failed After I added KenBurnsView Library to build.gradle on app level. When I try to sync the gradle it failed. build.gradle (app level) apply plugin: 'com.android.application' android { compileSdkVersion…
16
votes
1 answer

Implementation of KenBurns effect on Android with dynamic bitmaps setting

Background I am working on an implementation of the "KenBurns effect" (demo here) on the action bar , as shown on this library's sample (except for the icon that moves, which I've done so myself). In fact, I even asked about it a long time ago…
4
votes
3 answers

Existing library to reproduce zoom-in imageView effect of Foursquare android app?

I am searching a library or an existing code which reproduce the zoom-in / zoom-out imageview effect which can be found in Foursquare Android application. Here is the effect that i would like to reproduce :…
3
votes
1 answer

animate scaleType="centerCrop" in ImageView

Is there a way to animate scaleType="centerCrop"? I need to scale my image to certerCrop so the image can cover the entire area of the imageView. But I need to animate it to show the user the actual look of the image before it is being scaled I was…
3
votes
1 answer

Define zoom/pan start position with KenBurnsView

I'm working with the library KenBurnsView and I have a problem: the overview or this nice library says the following: "Highly extensible: you can define how the rectangles to be zoomed and panned will be generated" and that's exactly what I want to…
Adrian
  • 324
  • 2
  • 10
2
votes
1 answer

KenBurnsView how to set max scale?

I'm using KenBurnsView to add animation to my image. Is it possible to set the max scale programmatically ? Small images are too zooming.
enfix
  • 6,680
  • 12
  • 55
  • 80
2
votes
1 answer

KenBurnsView how to set image resource?

I'm trying to use Faria's KenBurnsView library in my application. KenBurnsView is some extension of ImageView, with a nice animating effect. You may have seen the effect in Foursquare app's images. For the actual picture, the view uses the XML…
Behnam
  • 6,510
  • 6
  • 35
  • 65
1
vote
0 answers

Circle is not displaying

Desired Result Result I am getting the animated image. But not getting the circle with text on it. code:-
Ankur Khandelwal
  • 269
  • 1
  • 4
  • 17
1
vote
1 answer

Adding another textview in kenburnsview splashscreen

I want to add another text view below my appname here's the splash private void setAnimation() { ObjectAnimator scaleXAnimation = ObjectAnimator.ofFloat(findViewById(R.id.welcome_text), "scaleX", 5.0F, 1.0F); …
Josh
  • 187
  • 3
  • 13
1
vote
1 answer

Fit image to entire imageView then animate to show the hidden part

What I'm trying to obtain is when loading an image from the imageView it should fill the whole imageview similar to scaleType="centerCrop" but instead of cropping it in the center it should crop to the left if it's a landscape image or crop to top…
philip
  • 1,292
  • 3
  • 24
  • 44
1
vote
2 answers

Android KenBurnEffect Issue

I have an issue related to KenBurnsEffect library. In this library they set an images from remote URL.. like this.. public static final String[] IMAGES20 = new String[] { "http://simpozia.com/pages/images/stories/windows-icon.png", …
1
vote
1 answer

KenBurnsView creating smooth custom animation

I'm using the KenBurnsView library in here But transition is not smooth and I don't know how to use the following code noted on github: RandomTransitionGenerator generator = new RandomTransitionGenerator(duration,…
Kerem
  • 1,494
  • 2
  • 16
  • 27
1
vote
1 answer

Merging two libraries

I am using Parse as a back-end service for my app and also KenBurnsView library to animate the images. My problem is that Parse uses ParseImageView and KenBurnsView uses com.flaviofaria.kenburnsview.KenBurnsView, so is there a way to merge this two…
1
vote
0 answers

Scrolling an image inside a imageView in android

I am working on an application in which I am having a large image and need to display that image in a imageview of small size . I was thinking to view the whole image by scrolling the image inside the image view automatic.Can it be posible ? I have…
Sumit Patel
  • 2,547
  • 8
  • 33
  • 45
1
vote
1 answer

Animate Bitmap within ImageView (Emulate Newsstand app - Ken Burns Effect)

How would one emulate the header image in Google's Newsstand app? The effect I would like to implement is a "moving" Image where the bitmap inside the ImageView is slowly panned and zoomed. Thanks
1
2