General :: How To Retrieve Data From GSII Internal Storage With Broken Digitizer
May 26, 2013
This phone was my dads until he got a new one, but he only has a limited amount of time to retrieve the data before it goes back to T-mobile or else he has to pay money for the broken phone core. It was dropped, and broke the digitizer but not the screen. As of now, the display doesn't work at all, but I can hear the phone turn on just fine. I have been trying to think of how I can access the internal storage without tearing the phone apart and getting to the storage directly(not sure if that would work either).
- Model Number SGH - T989
- Not rooted
- USB debugging not enabled. I thought I might be able to get to the storage via adb, but that will be useless without usb debugging activated.
View 3 Replies
Sep 20, 2010
My sitch is this: My HTC Incredible has broken screen and digitizer. Otherwise the phone seems to power up and work. I have all my pictures stored on the internal memory (boo). Is there any way to get to the internal memory given that I can't set the phone to USB Debugging mode? Is there an app that I can install on my pc that will allow me to "press buttons" on the phone? I have installed DroidExplorer and I can see the phone, and the sync works... But thats it.
View 1 Replies
View Related
Jan 5, 2014
I have a xperia u, which has not external SD card slot..
Data partition is MUCH bigger than what I need (I'm using 500mb of 2gb) and I want to move obb files to data partition to free some space in SD partition..
View 9 Replies
View Related
Apr 16, 2010
How can you retrieve yours phone internal storage from an app? I found memory info, but it seems that returns information on how much memory your currently running tasks. I am trying to get my app to retrieve how much internal phone storage is available.
View 1 Replies
View Related
Oct 29, 2013
I have a lg lucid4g and i need transferring the photos to my computer but I'm having a hard time because my phone does not respond to my touch im guessing its the digitizer.Is there anyway i can this without having to buy a new digitizer?I tried a couple of software such as "android recovery, mobile trans and a few others but with no luck.
View 1 Replies
View Related
Nov 13, 2013
I purchased a replacement digitizer for my broken Nexus 7 (first generation). Now, the *first* step of the repair process is to power-off the Nexus 7...
BUT It's BROKEN! I cannot press on 'power off' option when holding the power button for 10 seconds - that resets the unit.
How am I supposed to power it down?
View 1 Replies
View Related
Mar 12, 2012
how can i delete data stored in the internal storage , i am using HTC wildfire cm7
View 1 Replies
View Related
Nov 30, 2011
I have a UnRooted Desire HD running 2.3.3, and recently I got the "Low on Space" icon. Upon checking my apps and there size I only have 240ish MB of apps. So I deleted some apps and got 144MB of free space. Then over night my phone went from 144MB down to 8MB of free space (phone was on the charger and wasn't touched all night).
I did download an app called DiskUsage and it shows a very detailed view of whats taking up what space on either the SD or internal storage, and is showing me that my System Data is using 885MB of internal storage space. A friend has the same phone and he got the same app to compare and he only has 90MB of system data. I Hard Reset the phone and hope it doesn't come back, but I would like to know how to correct this issue if it was to happen again.
View 7 Replies
View Related
Jan 14, 2012
wiping my contacts and SMS. How do I go about recovering deleted files from internal storage (NAND)? And which files do I need if I only want to recover my contacts and sms?
attempting to recover them by following different tutorials, but no dice. Ive read an article where people were saying that if I take too long, I will not be able to recover my data.
View 8 Replies
View Related
Oct 18, 2010
I have a service that needs to write some data to the internal storage using RandomAccessFile. Do I need to use a WakeLock to make sure the data won't get corrupted if the service process gets killed?
View 14 Replies
View Related
Aug 23, 2013
I've bought this chinese clone of the SIII, it's a MT6575. It's great except for the internal storage, which supposedly is 500MB but there seems to be an invisible SD storage which is 2GB. It's really confusing... When I go to Settings -> Storage there are 3 memories: "Internal Storage" (claims to be 4GB but it's fake, it's actually 500MB), "Phone Storage" (claims to be 16.5GB but it's probably 2GB), and finally my SD, "SD Card" (32GB).
The thing is, I'm having problems downloading big apps because apps go to "Internal Storage" which is 500MB only, and which files are stored in the "Phone Storage" (maybe internal & phone are actually the same?). However when I go to Settings -> Apps, on the "Downloaded" tab, the apps are in "Internal Storage" (500MB), and on the "On SD Card" tab, it shows that apps are in "Phone Storage" (the ones I moved to SD). This means my 32GB SD isn't being used by the system when I send apps to SD probably.
Also, my 32GB SD card is found in /mnt/sdcard2, and the /mnt/sdcard... I don't know which storage is that.
So basically all this is happening because I tried to Link2SD with my 32GB SD doing all the 2 partitions stuff and so, but Link2SD never detects the "secondary SD" which is the 32GB SD, as this fake SD card, "Phone Storage", is probably what the programs thinks to be the SD card.
View 4 Replies
View Related
Oct 3, 2010
I have a question about where people expect me to store my application data. I have an application where the user will enter information via the keypad, and download information (including images) from a website. Where is the proper place to save this? Internal or External Storage?
View 5 Replies
View Related
Aug 31, 2009
I tried to copy my wiped data from my phone, so i have to read raw data with dd command. I have root and BusyBox v1.14.2 installed, but when i type: dd if=/dev/block/mtdblock5 of=/sdcard/testfile or even just dd if=/dev/block/mtdblock5 I get: dd: /dev/block/mtdblock5: Input/output error Why can't I copy the data?
View 3 Replies
View Related
Feb 18, 2014
I am needing to recover text messages from a damaged phone to be able to present as evidence. The phone is a Motorala Razr Maxx HD. The screen is broken and the battery has been disconnected. I am hoping for maybe some program that will allow my to plug it into my computer and pull my old text messages off of it or any other ideas on how to retrieve the files.
View 6 Replies
View Related
May 14, 2010
My wife has a completely stock 1.5 Eris. She's getting a low storage notification. I looked at the system setting and her internal storage is completely maxed out, but the SD card is 90% available. I've mounted her phone to my laptop and tried moving files around, but nothing is moving. She only has pictures on her phone, not a single song, movie, video, etc. How do I get the data moved to the SD card?
View 1 Replies
View Related
Jun 25, 2010
How to read and display the data stored in the Internal Storage-private data on the device memory.
String input=(inputBox.getText().toString());
String FILENAME = "hello_file"; //this is my file name
FileOutputStream fos; try {
fos = openFileOutput(FILENAME, Context.MODE_PRIVATE);
fos.write(input.getBytes()); //input is got from on click button
fos.close(); } catch (FileNotFoundException e) {
e.printStackTrace(); } catch (IOException e) {
e.printStackTrace();
} try { fos1= openFileInput (FILENAME);
} catch (FileNotFoundException e) {}
outputView.setText(fos1./*I don't know what goes here*/);
View 2 Replies
View Related
Aug 4, 2010
I have an application with a lot of media data (images and videos) that were previously stored on the sdcard. With that, images and videos are displayed fine in my app.
Now, in order to secure the content more, I wanted to move the content to the internal storage / data dir of the app, which I did. I copied all media with a routine within my app to the data folder (/data/data/com.myapp/some/folders/video.mp4) and adjusted the path in my app so that it would look for the media in the internal storage data directory and not the sdcard anymore.
Everything works fine, images are being displayed (decoded) properly, but videos don't play. They files do exist though - I do not get a FileNotFound exception. But an IOException: java.io.IOException: Prepare failed.: status=0xFFFFFFFC
Why is that? Everything is handled within my one app and the videos have been copied with the same routine as the images, thus having the same permission settings. Looking at the stack trace, it all runs in process id 18060).
Why I cannot playback the video from internal storage? Or how can I?
CODE:......................
View 2 Replies
View Related
Aug 16, 2012
Is there any way you can hack into Android storage to retrieve pictures? My tablets touch screen went out, and the device is secured by a pattern lock security screen. I connect it to USB, with no success in accessing internal storage through window explorer, and no luck with adb either.
View 2 Replies
View Related
Aug 10, 2010
Multi-touch issue, was promised late last year then was announced that it wasn't going to happen, can we replace the digitizer so we can get dual/multi-touch? Ninth Issue Now it seems that SE don't want to talk about Multi-touch, I just don't understand how come Xperia X10 has a single touch digitizer but X10mini has a dual touch digitizer but it's disabled so it can only work as a single touch. My question is this: Can we replace the digitizer in the Xperia X10 to a Dual or Multi-touch digitizer? Multi-touch fiasco: SE kept saying that Xperia X10 was Dual/Multiple touch capable, it was confirmed during Mobile World Congress, it was later "corrected", and Sumit Malhotra in the official Sony Ericsson blog said that the Xperia X10 was going to have Multi-touch with an OS update which few months later and after thousands of unanswered post by customers and SE fans we learned the truth that its not software but a hardware issue, in other words, its cheaper for SE to buy single touch digitizer for a 4inch screen than ironically buying a dual touch digitizer for the x10 mini but block it through software, yeah the x10 mini has hardware capable of dual touch but: " I noted some of your comments asking for the multi touch support. Having shared our personal experiences using the new UI within our team, we just love it the way it is and think that multi-touch would actually just destroy the simplicity of using these products. To avoid any speculation I can confirm that we do not have any intention to implement multi touch on X10 mini and X10 mini pro." Timo Maassmann " http://blogs.sonyericsson.com/products/2010/05/06/one-hand-touch-operation-we-just-love-it/#comments"
View 3 Replies
View Related
Oct 14, 2013
I accidentally cleared the data for my "Calendar Storage" on my HTC Wildfire S. Can retrieve the events back for the calendar? I have never synced it with a gmail account either
View 2 Replies
View Related
Aug 22, 2010
For some reason my Incredible won't mount both the internal phone storage and the SD card storage at the same time. What I mean is...when I plug my phone into my PC I only get a single popup asking to mount the phone's SD card storage, but not the internal phone storage.If I remove the SD card (or unmount the SD card using menus on the phone) and then toggle the connection type from Disk Drive, to Charge only, and then back to Disk Drive (to burp the connection), the internal phone storage will mount, but the SD card won't mount because it has been removed.When I connect my wife's incredible, my computer sees both the SD card storage and the internal storage (as expected) and gives me prompts for both. I took the SD card from the problematic phone and put it in the "good" phone and there are no issues at all (IE.. both the internal storage and SD storage mount). This of course means there is no issue with the SD card.
View 1 Replies
View Related
Nov 19, 2013
I bought my new phablet that was powered by 4.1
im shocked with how the manufacturer of my device(cherry mobile) designated their storage. the phone storage is 2gb and internal is 500 mb.
it is not a problem if i could write apps on phone storage by default but even though the 'write to phone storage' is checked, when i downloaded an app, the internal storage still losses free space.
so is it possible to extend internal storage?
View 1 Replies
View Related
Aug 10, 2010
I'm trying to help my gf with a phone issue with her Droid Incredible. Her screen recently stopped working, so we took it into the Verizon store and she got a warranty replacement. We still have her old phone (it must be returned within 10 days), and I was hoping I might be able to retrieve her photos from the onboard memory.
She does have an SD card, but she only installed it a few days prior to this incident, so I assume her photos were being stored to the onboard memory prior to this.
The phone appears to still be functional except for the screen... It still rings when it receives calls (but can't answer them), still beeps for text messages, etc., and when I hook it up to a computer via USB, two inaccessible disk drives appear.
The problem, as far as I can tell from reading online, is that the onboard memory can't be accessed unless you click "Disk mode" [or whatever it's called] on the phone after plugging it in, and if you don't click this option, it defaults to "Charge Only".
View 6 Replies
View Related
Aug 18, 2010
I used this to check the amount of space on my A2SD partition of my SD Card. However I've noticed that as well as INTERNAL storage, there's something called SYSTEM storage. Which is considerably bigger than whats left of my internal space.Is the INTERNAL used for Multimedia files as this thread suggests?Internal Storage vs Phone Storage.If so. How come my multimedia files have ended up there, when they've always been saved to my SD card.
View 4 Replies
View Related
Jun 7, 2013
I have an HTC Vivid which has a total of 16 GB internal space. Or at least it did. I had been running a JB custom ROM, but was bored today so I decided to flash a custom ICS one.
I backed up all my personal stuff to my PC, and wiped everything from recovery -- both caches, factory/data, system, and for good measure the internal sdcard (so there wouldn't be any potential conflict with the JB installation.
After I booted up, I checked the storage stats, and I now have around 6 GB total. Where's the rest, and what should I have done differently? It seems as if a partition isn't mounted or something. Is this space retrievable?
HTC PH39100 using Tapatalk 2
View 4 Replies
View Related
Aug 11, 2013
I'm using an EVO LTE, but this question should apply on using Android device that has internal storage and an external card slot.
I'm trying to use my EVO LTE as my sole media player (specifically, the internal storage). Connecting it to the PC and getting the files onto it are no big deal (of course I do need to use MTP, which I hate). Now on to the problem:
I'd like to be able to use the device connected to my car's USB port. Being able to pick through my media using the car stereo controls is a big plus for me, and worked great when I had an iPod (which I don't anymore, not getting into that).
Of course, the car stereo's USB connection doesn't support MTP, only Mass Storage, at least as far as I can tell (It's a stock stereo in a Fit). I get a compatibility type of error currently when I try to connect my phone using the 'HTC Sync Manager' USB option in the phone (which mounts the device using MTP). The 'Disk Drive' option of course only mounts the external card.
what I'd love to be able to do is mount the internal storage via USB Mass Storage. I'm not sure if this is currently doable, but my forum-scouring to date leads me to believe that it is not.
View 1 Replies
View Related
Jun 4, 2013
My's friend's phone is an Alcatel 918 Mix. It has 170Mb storage for apps. But when he want install ex:. Angry Birds, he got an error don't have enough space for it. His device's rooted.. and also have 16gb sd card.. can we increase with it his storage to could be able to instal more apps..
View 2 Replies
View Related
Feb 25, 2014
Been getting a message that my storage is low and need to move my apps to an sd card. i just purchased an sd card and moved my apps. but they have vanished, though from my available storage i can see they are still there. How do i retrieve my apps.
View 8 Replies
View Related
Nov 9, 2013
So the other day I was trying Cyanogenmod 9 on my galaxy pocket, however I didnt realize it wasn't an official release and it was REALLY bugged and I made a huge mistake because i forgot to install CWM. Thing is installed this rom and I belive i pretty much bricked my phone because now I can't get access to any of my networks, wi-fi, bluetooth, or usb mass storage or my sd card are not being recognized either...
What I've tried so far was sending the stock rom through Quick ADB Pusher, but it tells me that even though my phone appears to be root It wont allow it to access, then I tried different ways to root and unroot because apparently SU is not giving me the permissions. So finally tried my last option with ADB and was trying an adb push but I keep getting permision denied if I send it to /root or read only file if I send it to /system also tried Asb shell $su but I keep getting a denied message.
View 2 Replies
View Related
Feb 25, 2012
i have purchased the following phone as a present for someone (but from a different shop/site): MTK6516 K600A Android 2.2 OS Smart Phone TV WiFi 3.2 Inch Touch Screen Cellphone - Black
i'm not sure you will give support for such cheep phones, but i'm having a bit of a trouble with it... everything is working fine except the camera, video, sound recording and other features which require data storage. there are such types of error messages:
"please insert an sd card before using the camera" "your phone does not have an SD card inserted"
it does not come with an SD card and i haven't installed one yet, so when i go to "settings -> sd card and phone storage" it only shows the available "internal phone storage = 50MB"
is there a way to use/enable the internal phone storage for lets say - record some audio or make a couple of photos, instead of the non-existent SD card or does it really need one installed ?
it has 256MB RAM / 256MB ROM by specification.
View 4 Replies
View Related