Android :: Any Way To Get Icon Back From Media Store?

Jan 11, 2010

I've figured out how to get the camera to work. It's taking a 1/4 resolution picture and I'm putting it into the gallery. Next, I want to create a small icon of that picture to put on a button. I've seen several examples and the code below is what I've been trying:

showMessage("Next Step is cropping - Waiting ...");
logDebug("Sending URI " + mOutputFileUri);
// now we want to grab a lower res version for the button.
Intent cropIntent = new Intent("com.android.camera.action.CROP");
cropIntent.setClassName ("com.android.camera","com.android.camera.CropImage");
cropIntent.setData(mOutputFileUri); //cropIntent.setData(intent.getData());
cropIntent.putExtra("noFaceDetection", true); cropIntent.putExtra("outputX", ICON_SIZE);
cropIntent.putExtra("outputY", ICON_SIZE); cropIntent.putExtra("aspectX", 1);
cropIntent.putExtra("aspectY", 1); cropIntent.putExtra("scale", true);
cropIntent.putExtra("return-data", true);
startActivityForResult(cropIntent, CROP_FROM_CAMERA);

But, this blows up with a null pointer exception. I also get a warning in the log message stream saying the image file isn't finished writing. I've based my code on this:
http://stackoverflow.com/questions/1973359/android-crop-an-image-afte...
Also, when it tries to delete the temporary file, there is an error because I don't have permission. This smells like I'm just missing something important. Is there any other way to get an icon of the image?

Android :: Any Way to get Icon back from Media Store?


Media :: Android Movie Store Like Itunes

Feb 9, 2010

I am looking to sync up all of my devices (go android for phone and tablet, or apple for phone and tablet).

The thing I like most about the apple stuff is the Itunes movie/book store.

Basically I can buy movies and put them on my tablet/pc/iphone (with the future cloud streaming) from the Itunes store...Granted the stupid Ipad doesnt have a way to do TV out so I heard.

I want to stick with Android since I like the OS and I like the open nature of the software. However, there is no one place that I can go to get all my Media like the Itunes store. This is especially true for Movies/TV shows. It would be nice to have all of my movies on either a cloud or on my tablet so that when I travel, I can watch them or link them to a TV.

I know right now I can rip my DVDs to MP4 format, but I like just downloading a movie when I want to. I dont want to have to go to 5 different places to find what I wanted to see.

Basically does anyone know if Google is planning on making some sort of integrated market that has TVshows/Movies/Movie Rentals/Ebooks?

View 8 Replies View Related

Android :: Store.Images.Media.get Bitmap Returns Error

Aug 31, 2010

ContentResolver cr = getContentResolver(); Uri pic = Uri.parse("content://media/external/images/media/3");
Bitmap bm = Media.getBitmap(cr,pic); The above code is written in onCreate method of my Activity class. It throws the following error:
08-30 12:27:22.352: WARN/System.err(245): java.io.FileNotFoundException: No content provider: [content://media/external/images/media/3]
What could be wrong? The file in question is there because I launched Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI) in another method and got back the Uri of the picked image from the returned intent.

View 1 Replies View Related

General :: Play Store Icon In App Drawer Ignored Alphabetical Listing

Mar 17, 2012

I got the Play Store update last week and it was fine. Working smooth. Yesterday all of a sudden, something weird happens. First, the play store icon in my app drawer ignored the alphabetical listing and moved itself to the apps beginning with "m" (where the Market app used to be)I clicked on sort alphabetically, and it went back to its original place, but it still has the old market icon. I want the Play Store icon back in my app drawer.

View 9 Replies View Related

Android :: Store.Images.Media. Show Pictures In Full Size?

Aug 9, 2010

I guess this question has been asked before, but I can't seem to find a proper answer/solution. Have a note-taking app, which allows to take pictures. For that I start an intent, that starts up the built-in camera-app. So far so good. But when I show that image in my app, it's in a much smaller format The funny/weird thing is, that the camera-app did take a full-resolution picture! But for some reason I can't get the full version to show in my app? So, when I use the standard Android Gallery app, and go to that picture, it is very obvious that it's full size (I can zoom in and see details I really can't see when I zoom in, in my own app). Also, the dimensions are really those of the original picture, taken with the 5MP camera. In my app, they are very small. My phone has Android 2.2, but the same happens on my emulator (Android 2.1). How should I retrieve the pictures in my app? Tried a couple of ways, but none works :( Don't need a complete example (allthough that's very welcome), just a few clues are enough to search for myself.

View 1 Replies View Related

Media :: Way To Get Amazon Mp3 Store For Incredible?

May 6, 2010

How do I get the Amazon mp3 store on the Incredible? If not possible how can I download music?

View 5 Replies View Related

Android :: How To Store Data In Remote Database / Retrieve Back?

Dec 2, 2009

Am new to mobile development environment as well as android. I m trying to store data in the remote database and retrieve back.

View 2 Replies View Related

Media :: Custom Android Icon Pack

May 12, 2010

I made some Icons just for fun so I thought I'd share them. Plenty of different Androids in different colors and then you'll find plenty of random things. Also theres one called invisible, I like to keep my main screen as clean and simple as possible. So I used the invisible .png image to create an icon for gmail and texting, the 2 things I use the most. On my main screen I only have a search bar and the two invisible icons, everything else is on other pages. But anyways the invisible one is in there if anyone wants to use it. Use better cut or something like that to use these.

I'm using Nextheme.
http://www.nexus-nation.com/nexus-na...&catid=5&id=10
I'm also using the invisible widgets morph.
Download-
http://rapidshare.com/files/392266488/AndroidIcons.zip
I added some PAC-Man style icons, several different characters,and 2 androids and other randoms. I found these and made icons with them, I did not create them.

View 2 Replies View Related

Media :: Way To Store Custom Ringtones On Device Itself?

Jun 25, 2010

Is it possible to store custom ringtones on the device itself (nexus one) rather than on the sd card? t5hat would eliminate the problems resulting from a mounted sd card. when I have the sd card mounted and someone with a custom ringtone calls I don't get any ring at all.

View 1 Replies View Related

Media : Need Best Music Store For On Phone Buying?

Jun 22, 2009

I use amazon and 7digital on my pc, was wondering if any major store is particularly android friendly. Any suggestion ?

View 1 Replies View Related

Android :: Gps Icon Disappears / Way To Get Back?

Jul 22, 2010

I am using the GPS and something I do in my program causes the GPS icon in the notification area of my phone to disappear for a few seconds then come back, then disappear again. None of the other GPS programs I use have this "problem"... if it is actually a problem. I've read all kinds of articles about the GPS icon staying on after the program exits, but I can't find anything about it disappearing while the application is using it. What causes the GPS icon to disappear?

View 5 Replies View Related

General :: Status Bar Icon Not Turning Blue - Play Store Server Error

Jul 12, 2012

I was having problems with the play store and I was told to clear data from the Play Sore and GoogleServicesFramework app. That didn't work and I got a server error. Also my signal bars and wifi/3G icon are not turning blue as usual when connected. I feel disconnected from the play store .

View 1 Replies View Related

Samsung EPIC 4G :: Media Hub Glorified ITunes Store For Video?

Sep 17, 2010

So Media is just a glorified iTunes store for video? I thought it was going to be a better media player. My fault for not looking into it i guess.

View 11 Replies View Related

Media :: Store / App Similar To Amazons Mp3 For Movies To Be Purchased On HTC Hero?

Dec 31, 2009

Is there a store/app similar to amazons mp3 app, for movies to be purchased on the HTC hero?

In other words...

My question is pretty simple...I want to download/purchase movies to watch on my phone...don't really care about ripping dvds, I was hoping there was an app with the latest movies that could be purchased and downloaded directly to the phone and played through a movie player...

View 5 Replies View Related

Samsung Captivate :: Can I Bring Phone Back To Any AT&T Store

Aug 22, 2010

I bought it online around July 23 or 24 and I need to return it before my 30 day window is up. Can I bring it back to any AT&T Store or do I have to ship it back?

And if I ship it back today (8/22) and they don't receive it until say the 26th or 27th, can I still argue that I returned it within the return period?

View 1 Replies View Related

General :: Play Store Error 491 - It Comes Back Daily?

Nov 25, 2013

error 491 of play store, I've tried factory reset, reflashed ftf but this error comes back daily.

View 1 Replies View Related

HTC Desire :: Store Media Files Securely In Folders To Keep Separate / Secure?

Apr 12, 2010

Still waiting to get the desire..killer wait! (wanted the black one via orange but not happy with their loaded apps from what i've read)

anyway..just wondered if its possible to store media files securely in folders that i can keep separate/secure?

doesn't seem to be an app available...

View 3 Replies View Related

HTC Droid Eris :: App Delete From Store / Repay - Download It To Get Back?

Jan 15, 2010

I was wondering if i purchase a app from the market and if i like delete it accidentally or lose the app, if i have to repay to get it back? or i can just re download it again.

View 2 Replies View Related

Android :: Determine When Application Icon Is Clicked To Launch App / Do I Get Call-back For This?

May 7, 2010

Is there any way to determine when the user clicked the app icon to launch the app ? I mean say a user was using my app. Then he presses the home key as a result of which the app goes to the background. After sometime he clicks the app icon again. My question is do I get a call-back for this?

View 3 Replies View Related

Media :: No New Message Indicator On Application Icon

Aug 26, 2010

Well I made the jump from Blackberry to the Droid Incredible and so far so good. Just a couple of questions: 1. Is there a keyboard available that is similar to the blackberry? Or can someone recommend a good keyboard? I could live with what it has, but would like to have something different. 2. I loaded Handcent and it worked great BUT- it doesn't show a new message indicator on the App Icon on the home screen- only shows a notification in the Notification bar. Is this correct?

View 2 Replies View Related

HTC Desire : Way To Get Weather Icon Back?

Sep 14, 2010

I deleted the large weather icon on the Home, that came with the phone installed and it shows the date where you are etc.... How do i get it back on? I tried to go on add widget to home and then ''weather'' but it wasn't the same one. Its some small one instead.

View 1 Replies View Related

General :: Get App / Widget Icon Back?

Jun 6, 2013

My child accidently removed my App/Widget Icon. The icon that takes you to your apps and widgets.

How do I get it back?

View 1 Replies View Related

Motorola Droid :: How To Get Phone Icon Back On Screen?

May 25, 2010

I lost the phone icon off of my screen. I have looked through the applications and I don't see anything to put the shortcut back on my screen. How do I get a phone icon back on my screen?

View 1 Replies View Related

Samsung Captivate :: Battery Icon And Back Button

Oct 8, 2010

Anyways, I've had this phone for almost two weeks now and I love it. The only two things that have bothered me is: 1) the battery icon, it'll look like 80% when really it's 60% and 2) when I press the button sometimes I'll have to hit it a couple of times to make the back button work.

View 5 Replies View Related

General :: Get All Apps Icon Back On Go Launcher Dock?

Aug 3, 2013

The other night, something updated on my HTC One (running Venom with GoLauncher EX) and the icons got all jacked-up. Some Google apps reappeared on the dock, a widget got pushed on top of another, etc. It looks like when the Google apps updated, they felt the need to reinstall themselves on the dock -- not sure, but that's not my main question.

When all of this happened, I lost the "grid" looking icon that will show All Apps and I'm not sure how to get it back. At this time, I can only see the apps I've put on my "home" pages, and in order to see All Apps, I must do an "add" and browse that way.

How do I get the all-apps grid thing back?

View 4 Replies View Related

Samsung Galaxy S :: Trying To Return Messaging Icon Back To Bottom Bar

Oct 10, 2010

I'm a long time Nokia user and got my first android phone two weeks ago and there are still some learning to do in order to know how to use it properly. Today I accidentally removed one of the short keys from the home screen and I'm not able to get it back to it's place. To be more exact, it is the messaging short key which is located on the bottom bar of the screen. The other ones (Phone, Contacts & Applications) are still the, but when I'm trying to return the messaging icon back to the bottom bar, I always end up with the trash can over the area where I'm supposed to place the icon.What can I do, How do I get the icon back on the home screen?

View 3 Replies View Related

Samsung Captivate :: Market Icon Disappeared From Phone / How To Get It Back

Oct 1, 2010

My market icon disappeared from my phone. how do i get it back.

View 1 Replies View Related

Samsung Moment : How To Get Original Icon Back Without Doing A Factory Reset?

Jan 3, 2010

I will acknowledge that this is very insignificant, but for some reason it is driving me crazy. When I first got this phoe, I deleted the original espn, cnn and facebook shortcuts that came preloaded on the right screen. I have since come to realize that I check espn A LOT and I wanted the shortcut back there. So I added a bookmark, but the original icon that came preloaded just looked a lot better, does anyone know if there is a way to get the original icon back without doing a factory reset?

View 3 Replies View Related

HTC Droid Eris : Get Favorite Icon Back On Phone Screen?

May 16, 2010

After the update when i hit the phone icon, the "favorites" icon used to be at the bottom right after the green call tab. now there is an icon for call history.

i cannot for the life of me get it back. verizon says it was lost after the upgrade. i put the "people" icon on my now when i need to call a friend who is on my "favorite" list, i hit that icon, it brings me to all contacts and at the bottom i then have to depress favorites which brings up groups, then hit favorites. like 4 steps to make a phone call?

anybody figure out how to get the favorite icon back on the phone screen?

View 3 Replies View Related

General :: Any App That Will Back Up Media To PC

Sep 17, 2012

Is there an app that will back up your media to PC? Recently, I've noticed FOLDERS of photos disappearing from my SD card. I was wondering if there is an app I can install that I can wireless create backups.

It is simple to plug in and copy/paste, but I use SMS backup which backs up all my texts to my Google account. I was hoping that I might be able to do the same sort of thing to my PC with my media?I can't afford to lose any of it and I can't predict when stuff will be lost.

View 1 Replies View Related







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