HTC Desire :: Deleted Photo Leaves Blank Image File
Aug 24, 2010
I deleted 5 or 6 photos from my gallery. Now when I scroll through my gallery where the photos were, is just a blank space. I deleted the pics thinking it would automatically compress the gallery together, not leave me with the blanks.
View 4 Replies
Aug 2, 2010
I am taking a lot of pictures on my Desire, but having them names IGM1 IMG 2 etc isn't very helpful. Is there any way of changing some settings so the phone automatically names the pictures with the date instead?
View 1 Replies
View Related
Jul 16, 2010
As you may all know Desire has nearly 150mb internal memory for applications so I'm doing my best to use it wisely,
My problem occured when I start to install and uninstall many applications just for testing. I've seen that every installed and uninstalled application leaves some files that fills up this 150mb.
At my phone I had, CoPilot live + Several games + Google Earth. Now I've none and but when I try to install CoPilot or Google Earth I'm facing the fact that there is no space left.
I think applications might be leaving installer file behind when applications installed through HTC Sync, this might be the only logical reason.
View 3 Replies
View Related
Apr 26, 2010
I am having problems getting videos to play on my HTC Desire. I have converted my .avi files into Mpeg4 so as the device could read them ok. I'm using the free programme 'Handbrake' to convert the files. And it does so with no problems. The new mpeg4 files play with sound and image.
The problem occurs when I transfer the images onto the phones SD card. The video files are picked up via the camera folder (where you can play videos as there is no actual video player) as well as on the video player app I downloaded today - 'mVideoPlayer', without any problems but when I click to play the video the screen is black and only the sound works (even though on my pc the file played fine).
Do I need to download a codec or something? I would have thought that as the Desire was compatible with mpeg4 files that it would play them straight off without having to add software.
View 5 Replies
View Related
Nov 27, 2010
Recently acidently loaded a photo to onine locker form samsung captive that needs to be deleted ASAP. Also on family plan can parents see a phones online locker? How would i access the online locker to delete the photo?
View 1 Replies
View Related
Nov 26, 2010
I had taken photo a while ago with my x10, however i have deleted from the DCIM folder and would like it back.
Is their anyway i can recover this photo back?
View 5 Replies
View Related
May 13, 2014
Thinking I was deleting a single photo, I accidentally deleted the camera photo album on my Droid Maxx (XT1080). It doesn't have an external memory card so I wanted to mount the phone as a disk drive and use Recuva that I have installed on my laptop. Well Recuva won't recognize the phone since I can only select MTP and PTP. I read that Google removed USB mounting? So how am I supposed to do this? I am unrooted. I was just about to backup all my photos too!
View 1 Replies
View Related
Aug 18, 2013
I have a SGS4, Is there any way to recover deleted photo from the internal storage? My phone is 100% stock without root.
View 9 Replies
View Related
Sep 15, 2010
I accidentally deleted the AndroidManifest.xml from the Package Explorer panel. The file still exists intact in the original directory but I cant find any option in the Eclipse ide that seems to be for restoring it. I thought it might be 'Import' but manifest isnt one of the types on offer. Can anyone suggest how I can get the file into the package?
View 1 Replies
View Related
Sep 16, 2013
I accidentally deleted a whole photo album on my note 2. I have a program that will un-delete the photos however the Note 2 does not show up in windows 7 as a specific drive, only a media player or camera. Is there any possible way to un-delete these photos with any known software. I was able to do this before without an issue with CardRecovery 6.0 but now it will not detect the Note 2 since it is not showing as a drive.
View 2 Replies
View Related
Nov 17, 2010
This may sound stpid, for some reason I can't find anywhere on Eclipse that lets me generate blank .aidl file. does anyone know how?
View 1 Replies
View Related
Aug 24, 2010
Is there a way to load an image file into an ImageView object, and then define a transparent color for this object?
View 1 Replies
View Related
Jul 6, 2011
Seen this error. My sd card is not readable on any android phone or computer ive tried it on.
What I think broke it was the NEW SD CARD storage optimizer by Kalyani, I opened it up after downloading off the android market and used a feature called file explorer. It took forever to read all the files on my card and eventually I closed it out before its completion and immediately noticed my sd card is now inaccesable.
Is that error fixable or should I throw out the card?
View 19 Replies
View Related
Oct 8, 2010
Had the phone a few weeks, getting this error all of a sudden? Can I fix this?
View 3 Replies
View Related
Jun 12, 2010
My brother just bought a Milestone and he's having problems with the SD card (8gb). What happens is that he put some music on his phone, and with the program Ringdroid, began to cut some songs. Then, the phone began to crash, he restarted it. After restarting, the device didn't recognize the memory, saying "Blank sd card or unsupported system", occasionally rebooting, indicates that it was removed. I have looked in other threads and google it, but found nothing useful. I can't unmount or format it from the phone. And as I have the G1, I put my card (that works) on Milestone and got the same problem, so I think it's not the SD. I've already formatted it, nothing.
View 9 Replies
View Related
Apr 9, 2010
i am implementing photoimage upload in sdcard in sdcard jpg image getting and in image uri retrieve data in bitmap in bitmap converting byte code this byte code sending to the database how can implemented this problem please some suggestion of implementation some example of source i am new in android t's very urgent , if anybody knows the solution.
View 2 Replies
View Related
Jun 2, 2010
I have a simple task (simple in other platforms, not in Android :-( ): take a photo and return its pathname to the caller. I searched a lot the net and tried many variants to the code. I'm aware of the "thumbnail image" bug and am trying to bypass it. The following code works, but its somewhat dificult to get the photo: the guy has to go to the media picker, click menu button, select "camera capture", take the photo, click back, and finally select the photo from the list. The good thing: the photo returned is BIG.
Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("image/*");
startActivityForResult(intent, TAKE_PHOTO);
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
switch (requestCode) { case TAKE_PHOTO: if (resultCode == RESULT_OK)
try { Uri uri = data.getData(); java.io.InputStream is = getContentResolver().openInputStream(uri);
java.io.FileOutputStream os = new java.io.FileOutputStream(targetPhotoName);
byte[] buf = new byte[4096]; int r; while ((r = is.read(buf)) > 0) os.write(buf,0,r);
is.close(); os.close(); Launcher4A.pictureTaken(0,null);
} catch (Exception e) { String stack = Log.getStackTraceString(e);
AndroidUtils.debug(stack); } break; }
I also saw a code that (in theory) would do exactly what I need:
sourcePhotoName = Environment.getExternalStorageDirectory() + java.io.File.separator + "tmpPhoto.jpg"; targetPhotoName = s;
Intent i = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
Uri uri = Uri.fromFile(new java.io.File(sourcePhotoName));
i.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, uri);
startActivityForResult(i, TAKE_PHOTO);
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{ switch (requestCode) { case TAKE_PHOTO: if (resultCode == RESULT_OK)
try { java.io.InputStream is = new FileInputStream(sourcePhotoName);
java.io.FileOutputStream os = new java.io.FileOutputStream(targetPhotoName);
byte[] buf = new byte[4096]; int r; while ((r = is.read(buf)) > 0) os.write(buf,0,r);
is.close(); os.close(); } catch (Exception e) {
String stack = Log.getStackTraceString(e); AndroidUtils.debug(stack);
} break; } }
It works (almost) as expected: the camera application is shown, and after the photo is taken, the photo is returned to the application. However, it has two problems:
1. If I pass a folder inside my application's directory, when I press "done" button, the camera application does not return; it stays in the same screen until I press cancel. Seems that the camera application does not have permissions to write to my folder.
2. The image returned from this code is the Small Image (Thumbnail).
So, I now have a code that works and return a big image, but is somewhat burocratic to the guy to use (and also can lead to errors, if he selects the wrong picture), and a code that does what i want but returns a small picture. I'm using a HTC G2 with Android 1.6, and I have to use it because 1.6 is the requirement for my system. Ok, now the question: is there something I can do in code #2 to make it return the big picture?
View 4 Replies
View Related
Oct 15, 2010
Is it possible to get notified every time a new image,video is inserted on the sd card of your android device and how? I have looked at the Media Scanner class which indexes files but I can't find how to do get notified from that only how to notify Media Scanner of a new image I have created.
View 1 Replies
View Related
Aug 11, 2010
Every time. I load a froyo ROM this pops up. I'm running. Nonsensikal 1.5 now but others have said this too and I know my SD card is not blank. Do I have the wrong card in there. Its the stock 8gb. It doesn't. Let me download any Apps. that require SD permission. What do I do because I really want to keep this ROM.
View 2 Replies
View Related
Jun 21, 2010
You know when you call someone who doesn't have a photo linked to their contact it displays the green android guy. Well I really like what forum member sprint fun did with his avatar by making it into a OSU buckeye. I would much rather see that image rather then the green default android guy. Sprint fun has already said I could use the image, but I have no idea how or if its possible to set it as the default image for callers with no photo linked to their account.
View 11 Replies
View Related
Jul 9, 2010
I've searched high and low for a location of deleted items but have been unsuccessful. I'm just trying to recover a video I accidentally deleted (a "home movie" I made with the phone itself). Anyone know how to recover a deleted file or at least know where to find them?
View 1 Replies
View Related
Sep 5, 2010
I'm looking for an app that will allow me to view photos stored on my computer. I can access the computers on my home network from my Incredible using Astro or ES File Explorer "LAN" and open various file formats such as .pdf, .doc, .xls fine on my Droid; however, I am unable to open and view any type of image files (.jpg, .bmp, .gif, etc.) unless they are stored on my SD card or in the Droid memory itself.
When I try to open a image file stored outside the Droid, nothing appears on the Droid screen. I have installed several "image viewer" apps, such as Astro and 3D Gallery, none of which seem to be able to open remotely stored files. When I "click" on an image file, I see "Loading Image", but all that appears is a black screen with left and right arrow scroll buttons -- no pictures. Any advice, other than to copy and paste image files to my SD card, which then allows me to open and view them? I did get the 2.2 update.
View 1 Replies
View Related
Apr 8, 2010
I want to write a short app for getting some info from contacts, the first list screen I have should display the user Image (or an Image from resources if no such image exists) an the user display name. The problem is I don't seem to find a query that will provide me with the display name and a user id And the image URI in the same query. Moreover I'm aware of the fact that if the user has no image and the URI is empty or null i will most likely to get an exception while the adapter calls setViewImage(). Is there a simple way around it or should I override the setViewImage() or bindView() methods?
Also about the query, any chance I can make a single query for contact URI, _ID, contact_id and display name? my current queries: To get the contacts:
private Cursor getContacts() { Uri uri = ContactsContract.Data.CONTENT_URI;
String[] projection = new String[] ContactsContract.Data._ID,ContactsContract.Data.CONTACT_ID,
ContactsContract.Data.DISPLAY_NAME };
String selection = ContactsContract.Data.MIMETYPE + " = ?";
String[] selectionArgs = {ContactsContract.CommonDataKinds.StructuredPostal.CONTENT_ITEM_TYPE};
String sortOrder = ContactsContract.Contacts.DISPLAY_NAME + " ASC";
return managedQuery(uri, projection, selection, selectionArgs, sortOrder); }
If I have a contact id and want the image:
int _id = m_cursor.getColumnIndex(ContactsContract.Contacts._ID);
//try to retrieve the photo, if exists.
Uri photoUri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI,
m_cursor.getLong(_id)); InputStream is = ContactsContract.Contacts.openContactPhotoInputStream(m_context.getContentResolver(), photoUri);
Here I get from a cursor with _ID column the id and then creating the uri, I know I can get a row number but I'm not familiar enough with contentProvider to know how to join tables to get it all in one query (if even possible).
View 2 Replies
View Related
Nov 18, 2010
I would like an html5 page that runs in Android 2.2 Browser that I can take a picture using the phone's built-in camera and save it to a sqlite database as a blob.
View 2 Replies
View Related
Jul 8, 2010
I went into recovery and moved the VV.apk and other file to an app.disabled directory on my phone, the issue is that the icon is still in the apps section? Any reason you guys could think of as to why? Actually now that I click on it it for some reason takes me to MMS messages and the icon is just called voicemail. Can I get rid of that icon as I use google voice?
View 6 Replies
View Related
Jul 29, 2010
R.java has deleted automatically. How to get it back?
View 5 Replies
View Related
Jul 18, 2010
my root file is gone from my sd card due to accidently deleting it..is it possible to have anyone send me the file again or would i have to root my phone all over again? NONE of my root apps are working..cachemate..autokiller..etc
View 7 Replies
View Related
May 30, 2012
I am unable to publish my Android app on Google Play because the APK file has apparently been deleted from my console. I uploaded all of the screenshots and other things required for publication. I uploaded the APK file first. I now have no way to upload a replacement APK file and cannot upload a later version either. When I click the "publish" button I get an error message saying that the app will be available to zero devices because the APK file is not present. I suppose I can change the name of the APK file and upload it as a new app but I can't think of a better name than the one I picked already.
I did try to upgrade my original APK file with a newer version before publishing my original APK file. I wasn't allowed to do this and this might have caused the deletion but I don't know.
View 2 Replies
View Related
Oct 2, 2013
We are developing Android application (Android UI and C application through JNI). Target device is external SD on Android mobile.
I like to know whether any API is there OR any method to recover deleted files.
View 1 Replies
View Related
Nov 5, 2012
OK the system folder was deleted on the Impression 10. It boots but gets hung on the "Impression" logo. I hook it up to the computer, the computer recognzes it but I cannot access the files on both the SD Card nor the internal memory. Android Commander and ADB cannot access it. I have the stock system image file from leader, I also backed-up my system folder. how I can push the files from the computer to the tablet or is it too far gone?
View 1 Replies
View Related