Android :: Cropping Picture Issue On Droid X

Sep 13, 2010

I'm running into an issue with my program when trying to crop an image selected by the user from their gallery. The issue so far only appears when running on a Droid X, as running on the original moto Droid works fine.

Basically the issue occurs as the cropping intent is being run. Once the user crops the photo and clicks the save button, it replaces the wallpaper on the main screen with the cropped image that was saved! It does not do this on the moto droid, or emulators. Below is the code for cropping and saving the picture to the SD card:

CODE:................

Android :: Cropping Picture Issue on Droid X


HTC EVO 4G :: How To Set Picture Wallpaper Without Cropping Image?

Jun 22, 2010

Does anyone know how to set a picture as your wallpaper without cropping the image to fit all 7 screens on the evo. Basically I had a wallpaper app called "shake them up" which allowed me to set any of my pictures as the wallpaper without cropping them. After the latest update the app is making me crop like the phone does.

View 27 Replies View Related

Sony Ericsson Xperia X10 :: Picture Cropping - Image Destructive

Nov 30, 2010

Every time I set a picture to a contact, or change my home screen background I have to crop it. This wouldn't be so much an issue if the crop wasn't so destructive to the picture! Why can't I just use the whole picture? Why does the crop force me to cut out most of it?

View 3 Replies View Related

Motorola Droid :: Any Way To Set Wallpaper Without Cropping?

Feb 21, 2010

I have my wallpaper fixed so it doesn't move when I move from screen to screen. Since I'm using a fixed wallpaper why does it still want me to crop an image? I have an image on my phone that fits the screen perfectly but when I go to set it as a wallpaper it wants to crop it and cut the image pretty much in half which is really dumb. Anyway around this?

View 22 Replies View Related

Motorola Droid X :: Make Whole Wallpaper With Out Cropping Box?

Aug 1, 2010

I just had a question about wallpapers, is there anyway to make for example if someone sends me pictures and i want to make it a whole wallpaper with out the cropping box that shows up? I see around the forums people having different wallpapers not sure if I missing something really stupid since im newbie with this being my first android phone

View 5 Replies View Related

Motorola Droid X :: Setting Wallpaper Without Cropping - How To Do?

Jul 17, 2010

Is there a way to do it? I took a picture in portrait that fits the Droid X screen size perfectly and I want to use that as my wallpaper. I have scrollable wallpaper off and don't use the landscape mode for the home screen. I have that turned off as well. So really it makes no sense and its highly annoying.

I made a video to show what I was talking about because its kind of hard to explain...or some people just don't get it. Whatever if you don't understand let me know and I'll post the link up to youtube after its done uploading.

View 22 Replies View Related

HTC Droid Eris :: Cropping Image When Setting As Wallpaper

Jan 11, 2010

I have an Eris and wonder why the heck the phone wants me to crop an image to a square shape when the screen is a portrait (rectangle shape). Anyone know a way around this?

View 2 Replies View Related

HTC Droid Eris :: Get My Contacts Facebook Picture As Their Picture For Their Name?

Feb 3, 2010

How do i get peoples facebook picture to show up as their picture in my contacts. Right now my facebook picture shows up as Me, but none of the others are showing up. I even changed all my contact names to match the facebook page.

View 19 Replies View Related

HTC Droid Eris :: Picture Won't Show Up In View Picture?

Feb 7, 2010

I use the backgrounds app, and it lets me save backgrounds to my SD card. I go into Astro/ sdcard/ backgrounds and then click on the picture. It gives me 2 options to open it. "ASTRO Image Viewer" and "View picture". For me to use it as a background I have to pull it up in "View picture", BUT....no matter how many times I try and pull it up that way, it shows me the first picture in my camera album. If I click "ASTRO Image Viewer", I can always see the picture I selected, but under menu, I only have the option to "share" and nothing else. Can you tell me why the selected picture won't show up in "View picture"?

View 1 Replies View Related

Android :: Cropping And Changing Images On Soft Keyboard

Jul 29, 2009

I am trying to crop an image on a key for a soft keyboard. i want to do the following: 1.create a key with an icon (from a Bitmap) 2.take that Bitmap and crop it 3.set the new Bitmap back on the key as an icon Optional: 4.do some or most of this from the XML using the parser (i could not get a hook to the res/drawable/<image name> looking at the Xml Parser) here is what i do:....................

View 3 Replies View Related

Android :: Cropping Wallpaper In Order To Get Crisp Image

Aug 5, 2010

I am currently working on a wallpaper application and I was wondering if there is a way to make the bitmap look less blurry and more crisp once it is set as a wallpaper. Does it just require cropping the picture and resizing it to fit perfectly the size of the screen or there is some other way of solving this issue? I read that the application wallpaper set and save is able to deliver very good quality wallpapers once launched!

View 1 Replies View Related

Android :: Live Wallpaper - Cropping Photo Activity

Jun 1, 2010

I'm trying to crop a photo to use in a Live Wallpaper but I'm getting a FileNotFoundException when the crop activity tries to save my new cropped image. This is the code I'm using:

File file = new File(getFilesDir(), "wallpaper.jpg");
Intent intent = new Intent("com.android.camera.action.CROP");
intent.setData(uri);
DisplayMetrics metrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(metrics);
intent.putExtra("outputX", metrics.widthPixels * 2);
intent.putExtra("outputY", metrics.heightPixels);
intent.putExtra("aspectX", metrics.widthPixels * 2);
intent.putExtra("aspectY", metrics.heightPixels);
intent.putExtra("scale", true);
intent.putExtra("noFaceDetection", true);
intent.putExtra("output", Uri.parse("file:/" + file.getAbsolutePath()));
startActivityForResult(intent, REQUEST_CROP_IMAGE);

The wallpaper.jpg file seems to exist on DDMS file explorer so I'm not sure what I'm doing wrong.

View 2 Replies View Related

Android :: Cropping In Camera Application And Photo Location

Oct 26, 2009

I have not noticed this posted yet so just adding here for those that have not found it. The new camera/video/gallery application supports cropping. After taking a photo or viewing in the gallery, press the Menu button and Crop. You can resize the crop box by touching the edges or move it by touching in the center. Using this feature I was able to create and share panoramic images that were much more interesting. Clicking Menu and then More reveals the "Show on Map" command which displays the location the photo was taken.

View 3 Replies View Related

Android :: Drawable Images - Cropping Edges To Make Rounded

Feb 16, 2010

I have a small project in which I download images from Internet in the form of drawable and use them in Imageview for which I have provided functionality similar to an Imagebutton but without the gray edges. The question is that is there any functionality in Android (similar to IPhone) by which we can crop the drawable from edges to make them rounded edged drawable. Even if its a "not-tested-neither-recommended" method, do let me know. I would like to work on this a bit.

View 1 Replies View Related

Android :: Set Center Of An ImageView Without Using Paddings / Disable Cropping Of Image?

Feb 11, 2009

Is it possible to set the center of an ImageView without using paddings?

What I'm trying to do is, to place a part of an image outside the screen and animate it so that parts of the image become visible while other parts become unvisible.

Another problem is that when an image is bigger than the screen size it gets cropped. How can you disable cropping of the image?

And what kind of animation should be used? Should I go with RotateAnimation or is better to rotate the canvas ?

View 2 Replies View Related

General :: Android Web Browsers - Cropping Profile Photo In Facebook

Jun 27, 2012

Any web browser where the resize/crop profile photo window in Desktop (full) version of facebook actually works? Seriously, I can not change my friggin fb profile pic because when it asks to drag the edges of the box to crop the photo, it wont do anything. When I touch it and try to drag, it just moves the entire screen around. It wont actually select it...kind of like you do when you click inside a Flash window. I have tried stock browser, Boat, Dolphin HD and Opera. None of them will move or resize the drag box. Im stuck without PC access and have been wanting to change my photo for months but have not been able to. I dont understand this. When I had my Touch Pro 2 with Windows Mobile and used Opera Mobile, I had absolutely no problem dragging that box around.

View 1 Replies View Related

General :: How To Set Wallpaper Without Cropping

Jun 5, 2010

I found some pretty neat wallpapers, 480x800 I believe, and would like to use them on my EVO. Looking at them in the Gallery they are damn sweet, BUT when I try to set them as Wallpaper a cropping tool pops up.

I want to use the images as they are seen in the gallery, cropping doesn't cover the entire image and looks like day old death. Am I asking for something that's impossible?

View 12 Replies View Related

General :: Wallpaper Without Cropping

May 20, 2013

I need a website or app where I can find wallpapers that I dont need to crop.There is nothing more frustraing than browsing through all these beautiful wallpapers and then when I want to use one, I can only use 50% of the picture.I absolutely love to look through wallpapers and save them on my phone, I change my wallpaper every other day, but hate the fact that I can only see part of the picture.

View 7 Replies View Related

General :: Unable To Set Wallpaper Without Cropping (HTC One V)?

Apr 26, 2012

I am using HTC One V (Android 4.0). And as in other phones, when using default HTC Sense launcher, I am unable to set any random image as wallpaper without cropping. One V comes with screen resolution of 480x800 and I downloaded few wallpapers with this specific resolution. But HTC still forces me to crop almost half of image which is irksome.

It sets full image as wallpaper but when I move to right or left for alternate desktops, I get thick black edge. I even selected "Scroll" but still same problem. With no scroll, it goes completely wrong.

Quickpic - They say, use "set as quickpic wallpaper" but this option doesn't work too. It shows a frame to crop which doesn't expand to cover entire screen and if I dont do anything frame, it set image inside frame as wallpaper.

View 4 Replies View Related

General :: Profile / Wallpaper Pics Without Cropping?

May 4, 2014

Why do you have to crop a pic when selecting as wallpaper or bbm profile pic? On previous platforms I've always been able to zoom out of the pic to make it fit. Having to crop every photo is getting very annoying! Any way around this or how to zoom out of pictures?

View 3 Replies View Related

Samsung Moment :: Cropping Images For Wallpaper Work Around?

Jun 25, 2010

I've been searching on this forum for hours now and can't seem to find any information on a work-around for cropping images for the wallpaper on my Samsung Moment. I've tried "Wallpaper Set & Save" and it just crops it automatically. I just installed the ADW Home Launcher and I can get up to 7 screens on it... but for some reason, my phone still wants to perform as if it's running on 3 screens. So it just automatically crops it.

View 5 Replies View Related

Motorola Droid X :: Picture Widget And Picture Slideshow Widget

Jul 25, 2010

I posted this question sort of embedded in the "show us your Droid X screen" but I think it got buried with all the "what is that widget?" questions.I see on some screens the picture widget picture is big. Mine is only about 1 inch by 1/2 inch.I can barely even get 1/2 a face in the picture.How do you get a bigger picture?I'm running LauncherPro, is that effecting it?Since I couldn't get a bigger picture, I decided to try and add the slide show widget. But when I try, it says Widget Conflict only one photo slideshow per home screen. I don't have any other slideshow widgets on my screen. Any ideas?

View 2 Replies View Related

Sony Ericsson Xperia X10 :: Way To Get Contacts Picture To Show Facebook Picture In Timescape

May 11, 2010

is there a way to get a contacts picture to show their facebook picture in timescape. I have linked all my contacts with their facebook accounts but it still shows the default white picture. I dont want to have to go through and take pictures of all my contacts. that would just be silly.Apologies if this has been asked before or is a simple fix. I'm new to this smart phone malarchy

View 4 Replies View Related

Sony Ericsson Xperia X10 Mini/pro :: Facebook Profile Picture Of Friends Picture Displayed On Contacts?

Oct 24, 2010

is it possible to have the Facebook profile picture of my friends be the picture displayed on my contacts? or do I absolutely need to upload a picture for every contact individually?

View 2 Replies View Related

Android :: Example To Draw A Picture In Droid?

Jul 8, 2010

I want to draw a picture (bmp,jpg,png) into the canvas (using the onDraw() method) of a class that extends the View class. I would like to be able to draw parts of the picture, not the whole at once.

View 1 Replies View Related

Android : Want To Crop A Picture In Droid

Apr 23, 2009

If I have an instance of a Picture object (android.graphics.Picture), how can I crop out a section of the Picture object (0, 0, 100, 100) (x, y, w, h)?

View 2 Replies View Related

Android :: Picture Messages Too Small On DROID

Feb 24, 2010

I'm using a droid and am having problems with receiving picture messages that are the size of a penny! i can send full size pictures but when i receive them, it is sooo small. and when i stretch it out, it looks all blurry.

View 9 Replies View Related

Android :: Droid Native Picture Viewer

Nov 14, 2009

Just got around to trying the built in photo viewer in Droid accessed through gallery, Just tried free app 'picture viewer' and it's better, but still not great. Going to keep looking. What I am looking for is to flick through photos, which picture viewer does, but also being able to pan around pic if zoomed in. Also automatic search of SD card for folders with pictures.

View 20 Replies View Related

Android :: Need List Of Picture Supported Files In Droid

Apr 20, 2009

I'm doing an application of showing picture with ImageView.I want to know how many kinds of picture are supported in Android, and what are they.Could anyone give a list of these files?

View 4 Replies View Related

Android :: Droid Related Iink To Post A Picture?

Apr 14, 2010

Does anyone else have any android related link? if so post a pic!

View 8 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved