Android :: HTC Photo Frames?
Jun 15, 2010
HTC Incredible came pre-loaded with Photo Frames Widget.It shows a full page frame with your photo albums and you can swish between photos while viewing your home page. While using ADW Launcher, I no longer get that as a choice to install any one know of another app that's similar? Or a way to get the HTC apps used on ADW Launcher?
View 1 Replies
Jul 22, 2010
Trying to play animated GIFs on Android here
(see http://stackoverflow.com/questions/809878/android-how-do-a-display-a-large-animated-gif-given-a-url).
It's anything but smooth. On Android 1.5, the Movie.decodeStream()/decodeFile() returns a null. On Android 1.6, with the GIF files I've got, it returns a zero-sized movie with zero duration - clearly not adequate.
The referenced question suggests splitting the GIF into frames (and then rendering these). How exactly do i accomplish that, please? Tried opening one of my GIFs with GNU giflib in Windows. It choked on the very first frame. The GIF itself is all right, all browsers (save Android's) display and animate it fine. Worked with giflib 4.1.4. Not sure what was broken in 4.1.6, but there you go. Next step: build giflib for Android via NDK, somehow integrate with the Bitmap class. giflib it is. In conjuction with Bitmap.copyPixelsFromBuffer. The colors are all askew right now, but the basic design seems workable.
View 1 Replies
View Related
Nov 11, 2010
Is there an app that lets you view your frames per second in real time in video games and emulators?
View 2 Replies
View Related
May 20, 2009
Iīm trying to capture frames from a video file, but I donīt know how to do it. Are there any classes like FrameGrabbingControl (in JMF) for Android? Is it possible with MediaPlayer and MediaRecorder classes?
View 2 Replies
View Related
Dec 31, 2009
I am trying to decode and obtain all frames in a video stream, each of which would be processed by a native signal processing engine and re-encoded back to a MPEG4/MP4 file. I noticed that there was a getFrameAt() function in earlier versions of SDK but its not available in v 1.6 on which I am working. As I am fairly new to Android, I would like to know from more experienced people around here as to how I can extract video frames into a buffer for processing.
View 2 Replies
View Related
Dec 30, 2013
i know how to create bootanimaton.zip file but i want to know how do you create animation frames for that zip file
View 3 Replies
View Related
Aug 25, 2010
I've been trying to make a simple live wallpaper out of a boot animation. So basically i have about 50 .pngs in my drawable folder. I'm able to set the animation to about 10-20 frames and it works great. But once i set it to about 30 frames...I get an OutOfMemory Error. I was hoping maybe someone could take a look at my code and maybe give an example of how I could achieve more frames? That would help so much i've been looking at this for hours > <
Here's my code:..................
And here's a logcat if that'll help at all:
CODE:...............
View 4 Replies
View Related
Feb 3, 2009
I would like to know how to read in an image file which has multiple frames in it. Something like an animated gif file. I would like to perform frame by frame animation with a file of this type. I don't want to have each frame as drawables in the resource directory. Can anyone throw some light on how to perform the above mentioned tasks.
P.S - I have already checked the example in the API demos where an animated gif is read as an object of type Movie. I don't want to read it in as a movie file.
View 3 Replies
View Related
Feb 1, 2010
I would like to know if it is possible to remove one of the frames I added using addFrame in Android?
View 1 Replies
View Related
Sep 7, 2010
I want to display animated gifs in my aplication.
As I found out the hard way Android doesn't support animated gifs natively.
However it can display animations using AnimationDrawable:
http://developer.android.com/guide/topics/graphics/2d-graphics.html#frame-animation
The example uses animation saved as frames in application resources but what I need is to display animated gif directly.
My plan is to break animated gif to frames and add each frame as drawable to AnimationDrawable.
Does anyone know how to extract frames from animated gif and convert each of them into Drawable?
View 2 Replies
View Related
Jul 31, 2010
I am writing an app to capture the camera preview frames and convert it to bitmap in Android.
Here is my code:...........
After I start preview, the callback got called with data, but the bitmap is null.
What did I do wrong when convert the byte array to BitMap?
View 2 Replies
View Related
Apr 10, 2009
So with Cupcake looming, does anyone know what kinda Frames per second the video recorder will have?
View 2 Replies
View Related
Dec 5, 2010
I have built a face detection app where I get the frames from onPreviewFrame, do the face detection and then draw a circle on a canvas above my surfaceView. The problem is frames are automatically displayed using the surfaceview thread when Camera.StartPreview() is started. This is obviously necessary for the PreviewCallback to kick in. As the processing, face detection and drawing, is done in a separate thread(I am assuming here), there is a 2 second delay between the frame being displayed and the result of that frame being processed and drawn on the canvas.
What I want to do is stop the camera preview displaying the frames and display them myself after processing. I believe this has three benefits:
The delay with disappear.I can draw straight to the bitmap instead of on a canvas which is useless as you can not undo what you have done.It will keep memory consumption low by not having two threads using the same image.
I've read that it is possible to display frames from the previewCallback, how to stop the frames being displayed automatically?
View 2 Replies
View Related
Jan 14, 2012
For 2D or 3D applications (like GTA III for instance), I would like to be able to tell what FPS the game is running at pretty much for benchmarking purposes.
A game called osu!droid can show FPS in the bottom right corner, but this option can be enabled or disabled via it's options:
I would figure Android SDK for Windows to have some sort of way to see this, but I couldn't find anything. If there is a way to display FPS via the SDK (or maybe an app).
View 8 Replies
View Related
Nov 5, 2009
I could be missing this, but is there a way to send/tag a photo to facebook from the photo itself? The Facebook app for my blackberry lets me do this. If I pull up a photo I just took, I have the option of sending it to Facebook, as well as tagging it. I can't figure out how to do this on my Moment.
View 3 Replies
View Related
Oct 20, 2010
Has anyone else experienced a strange problem with the Milestone (running 2.1) camera - in every photo, the right edge shows a thin vertical strip of the next photo! Shows in both Gallery & Media Gallery.. but don't have a similar issue in a video.
View 5 Replies
View Related
Sep 22, 2013
Camera app or organizer app that actually moves pictures instead of just displays them differently via a viewing app?
For example it would be great to have photos automatically go into pre-set albums or quickly and easily reorganize them afterwards etc. I know I can manually move them via file managers but looking for a dedicated app with different options/filters etc.
View 8 Replies
View Related
Mar 16, 2010
I have a project that requires a view to be animated whenever the user performs a certain action - perhaps twenty frames or so, with a total duration of a second. There's more work required than just updating the view, so the animation classes are not helpful.
Right now my test program uses a very simple method: I have a handler that is called to start the animation. The handler's handleMessage() method calculates the new frame, invalidates the view, and calls sendMessageDelayed(obtainMessage(0), 50); However, the animation isn't smooth - especially, for some reason, in landscape mode. Portrait mode seems much better (on a G1, if it matters).
This suggests to me that this isn't the right way to... handle... this problem. What would be a better way? Calculating time deltas? Starting a new thread whenever the animation starts and having it repeatedly calculate and invalidate instead of relying on the handler, even though it means creating and destroying a new thread every time? (most of the time the program is idle; the user interacts with it every few seconds, typically). Starting a thread and leaving it running?
Whether that's the right way or not, what's the most accurate way on Android to measure time, and to sleep for a specific duration?
View 3 Replies
View Related
Jan 26, 2010
Possible Duplicate:
Getting frames from Video Image in Android
I wanted to know if it is possible to extract frames from a running Video in Android? I need to extract frames at regular intervals and send them for further processing.
Would someone be able to find an answer for me?
View 1 Replies
View Related
Jun 4, 2010
Here are two pics, one from my canon dslr and one from the HTC evo. Both were reduced by Photo bucket because of a file size restriction. Not bad for a cell phone camera, imo. Sorry, but I didn't have time to do some other examples, Canon T1I, 18-55mm lens, set to 8MP, full auto On the left HTC Evo 4g, 8MP, full auto On the right.
View 5 Replies
View Related
Jun 7, 2010
Anyway i can get the photos from my facebook friends to be the photo for there contact photo in my phone book?
View 2 Replies
View Related
Aug 2, 2010
Can you please tell me how can I get the photo data if I have a list of photo_ids? I try this:cursor = mResolver.query(Contacts.Photos.CONTENT_URI, null, "_id IN (?)" , new String[] {"458"}, null);But the cursor return null.
View 1 Replies
View Related
May 31, 2010
trying to get rid of a photo download from the gallery. No delete button comes up when trying to remove this photo.
View 6 Replies
View Related
Oct 15, 2010
There is any decent app useful to see the photos stored in my Desire? I have a lot of photos stored in the SD card and the stock one is slow, and hangs up quite often.
View 4 Replies
View Related
May 31, 2010
In anticipation of the 8mp camera on the EVO dropping this Friday...what photography apps exist?
Unlike iTues app store...I can't see what's available unless using an Android phone.
I will get my first one withe the evo
View 1 Replies
View Related
Sep 9, 2010
I just got a HTC Evo and I'm still new to using Android (which seems awesome so far).I send a lot of photos via email to one particular person, up to a dozen times each day. Just this one particular person. Is there a way I can create a quick shortcut for sending a photo to them, and avoid the Share -> Gmail -> type email address. Are you sure you want to share without text, etc, process? I know it's not much, but I do this very frequently and the time adds up.
View 8 Replies
View Related
Jan 12, 2010
I am looking for a app. that would allow you to put a widget on your homescreen that listed all your contacts photos that would allow you to scroll through them to call, like a photo id speed dial. It isn't Phoneface, but I had it before and can't remember what the heck it was. If anyone has any suggestions please post!
Now the pics werent large or anything like that but you could scroll either left or right and you could tap on the person you wanted to call.
View 1 Replies
View Related
Mar 28, 2010
I use PhotoShop mobile usually whenever I need to edit photos. however, a friend with the iPhone showed me this app yesterday that you can delete all colors from photos and add colors to the parts of the picture you want. If that makes sense and you know of an app like that let me know.
View 7 Replies
View Related
Jun 3, 2010
Is there a reliable app out that allows you to lock your photo album/pictures? Is there one that doesn't require you to lock your entire phone? I don't want certain people to see certain pictures in my phone.
View 3 Replies
View Related
Sep 24, 2010
I've searched but haven't found what I'm looking for. I would like a photo widget that will rotate photos based on my directory selection.
View 2 Replies
View Related