Can't Find Essential Files
Jul 10, 2012
I am currently learning app-making for Android with Eclipse. I have downloaded android SDK manager and the android plugin for Ecplipse.
The problem is:
- I'm creating an Android project
- In my current tutorial i need to find the main.xml-file in the res/layout-container.
- The tutorial says the main.xml -file automaticly will be created when a project is created.
- I can't find any file that is names main.xml, nor can I find a similar file that should contain the same code.
- If I create an Activity while I'm creating an Android-project, a xml-file with same name as the Activity will be created in the res/layout-container.
what do I have to do to find the main.xml-file?
View 2 Replies
Apr 4, 2010
I have a Samsung Galaxy I7500 using android 1.5. I extended my phone with a 16GB microSD. I copied a big music collection (around 800 files) into a folder on this SD. Now the problem is that the music player can't find all the files.
I know that there are several threads about android not finding music. The answers are usually that the library hasn't yet been updated or that the ID3 tags are not correct.
I have checked both.
Btw. I can play the files using ASTRO.
In my opinion it seems as if android can't build up a library with too many entries. If I rename the files or put them into different folders, songs disappear and reappear quite randomly.
Do you have any solutions? Is there a music player which doesn't use the native music players index of files?
View 3 Replies
View Related
Jan 15, 2010
Can anyone tell me there list of essential apps for a new Android user, i know there have been a few threads but some are quite old and i guess there are new apps all the time.
View 2 Replies
View Related
Apr 9, 2010
According to El Reg. Ten Essential Android Apps ?
View 1 Replies
View Related
Nov 11, 2010
I'm a nube when it comes to the smartphone world and just got my first a couple of days ago (MyTouch 4G). I'm jumping into this headfirst but was wondering what the more experienced "Apps" users think are the most essential ones to have handy on your phone. Mainly, which apps will just in general improve the daily use of the phone as well as other apps. For instance I've noticed that when looking at most apps it requires you have another software/program loaded in order to use that certain app.
View 5 Replies
View Related
Oct 18, 2010
Is there a Rom that has bare items in it? I'm talking about just the basic basic essentials that makes the stock rom look like a joke. Something that doesn't contain ringtones, music files, just the bare items to keep the rom going: basic phone, basic texting, etc. and no added items like facebook, twitter, etc. No added scripts, features. If none like this exists, then does anyone know what is safe to remove from a stock rom and what needs to stay? I'm looking into making my own personal rom (and maybe one I can share with you all) that I can play with as far as adding and removing items while maintaining max storage space on the phone itself.
View 1 Replies
View Related
Dec 12, 2009
What are your favorite accessories for your DROID, and why? Best holder, belt clip, protectors? Just got my DROID today. Will either call it 'Kit' or 'HaL'
View 6 Replies
View Related
Mar 25, 2012
I am new to making android applications, and I was wondering how I can find files? I want to know how I can find certain files in an application with the same extension e.g. it finds all .txt files and with each .txt it shows their names in the application.
View 1 Replies
View Related
May 26, 2010
I am new and this may be a stupid question. I cannot find files and folders on my Incredible. If I download an attachment I have no idea where it goes. I can't "see" the Droid on my computer when synced so do not know how to find the pictures to transfer to computer.
View 2 Replies
View Related
Jan 24, 2013
where i find the XML files associated with UI sound like charger_connecting or sound camera
View 1 Replies
View Related
Oct 22, 2010
I havent been able to find the zip or rar files my phone downloads (or at least I think it has downloaded) through the Browser app.
THe very first time I tried this it worked fine. i downloaded a zip file from filestube and it immediately showed up in the notification bar that it was downloading. When it was done i clicked the notification and i unzipped it with androzip or something like that. Worked like a charm...
But now i have tried many times, and i never get any confirmation that any download has begun in the notification bar or anything. The only thing that leads me to believe that some download is actually taking place is that, for instance, if iam downloading from megaupload, if i click the download button 2x it will take me to window saying that "this i.p address is already downloading a file".
But i cant find any evidence of this on the phone? I have looked through all the folders on the sd card, but no luck.
View 6 Replies
View Related
Jan 30, 2010
I sent a pdf file from my corporate email to my personal email. On my Droid email it gives me the option to save or open. It opens and I know it saves on my sd card. How do I find it and view it after that?
View 1 Replies
View Related
Mar 19, 2014
I think the connection between the body and screen broke. Nothing shows on the screen, and there's no touch input available. But the device is still able to power on, reboot, and is recognizable from my Windows PC. I'd made a fairly recent nandroid backup, so I'm not in an emergency phase, but there are some files and photos I'd still like to try to recover from the broken device. Basically just files on the internal SD card. I was rooted, running stock Android on the latest OTA.
I'm not very experienced with ADB, but have started to give that a shot. I've tried various ls commands, but am stuck at a point where I get an error. Using a console (Console2), I ran ADB, then used this command:
Code:
adb shell ls -R /storage/sdcard0/
I got this error:
Code:/storage/sdcard0/: opendir failed, Permission denied
I'm not sure if this error is because I didn't open shell with root access. But when doing that, I run into other trouble because I'm not familiar with the linux-style commands. Another small issue I've bumped into is that when running the ls command on large file trees, the results are cut off by the console's 9999 line buffer.pull all the data from the entire internal SD card?
View 1 Replies
View Related
Apr 13, 2013
My Pantech Burst has Qualcomm MSM8660 and its bricked. I want to flash it using QPST. The problem is that I can't find Qualcomm MSM8660 hex files ie. MPGR8660.hex and msm_8660.bin files.
View 1 Replies
View Related
Dec 11, 2013
I would like to "deploy" .apk files to a set of tablets for student use in the school. Every now and then I will be required to install new apps across a range of devices. I have sorted out the transfer of the apk files to the tablets using an app called "FolderSync" so that the files will be local on the SD Card. Hopefully this part should not be problematic. Due to the fact that the tablets will be used by students, I want to make the process of installing the apps as automated as possible. Using the command "pm install <app.apk>" command I have achieved this step also. My trouble is that I will require the script to improvise and find all apk files in a folder and install them. So far I have tried the following:
Code:
su
cd /sdcard/FolderSync/
find *.apk -exec "pm install {}" ;
However this returns "find: pm install app.apk: No such file or directory" This may be more of a Linux issue than android, or maybe even just me missing something obvious, however I have tried adjusting the syntax here and there and can't figure out how to successfully install a directory of .apk files.
View 2 Replies
View Related
Sep 20, 2010
Where does the installation files over sync store in phone memory,after some time it has a notification low phone memory,where i can find and delete these files?
View 2 Replies
View Related
Jan 31, 2014
I use android 4.3 with custom ROM and my device is root. I use Google play store to install applications . where I can find apk files are downloaded by play store ,? I want find them and move them to SD card and use them later , if I want reinstall them and do not use more bandwidth of internet . I do not want use application like titanium , I want do this with file manager . Can I do this for more space , for my phone . for example I find them and move them to SD card , for more space
View 11 Replies
View Related
Jun 1, 2014
I'm trying to make my own slimmed version of a ROM's .zip, by deleting some APKs and changing some other files (media, bootanaim, walls; minor changes to systemui and framework-res; etc)..
Until now, I've done it several times, but I think that I can do a more in-depth research to reduce junk files..Is there a way to find a list of LIBs and other files that are related to the APKs that I delete??. I've tried two ways:
1) Decompiling APKs and "explore" to find related files
2) Search all over the Web to find information
View 3 Replies
View Related
Apr 5, 2014
Any file shredder app or scrambler?
View 1 Replies
View Related
Sep 26, 2010
Where can I find a list of files that can, or shouldn't be, deleted w/ titanium backup?
View 2 Replies
View Related
Jul 6, 2010
I used both windows explorer and media go to copy video and photo files to my phone card. I can see them on the card but when i unmount and i search them on the phone i can't find them.
Is there a setting i'm missing?
View 3 Replies
View Related
Jun 27, 2010
I accidentally merged some files in astro file manager when I was trying to move some files within the file manager and now I can't find them. I tried a search but I didn't find anything.
View 2 Replies
View Related
Aug 6, 2010
Got Froyo installed on my Incredible. Can play the .3gp files on my computer, but can't find a program that will edit them natively. Have tried Windows Live Movie Editor (beta), Elements 8, Coral X3, etc.
Guess I can convert them using some 3rd party tool to DV-AVI or something, but why do a second generation? Any suggestions?
View 1 Replies
View Related
Sep 5, 2010
New Sony Ericson Experia Mini. Bluetooth will detsct other phones and pair. Now the problem is this. When the phones visibility is on (form a poxy 120 secs) no other phone in my house can find it or send it any files etc. Is there a general problem with bluetooth on this phone that i am unaware of?
View 5 Replies
View Related
May 11, 2010
I am working on an application that needs to find GPS location of the user. While testing my code on Droid i am unable to find the GPS location. While googling i found this link to an issue raised with Google.
But apps like Yelp can find the GPS location on droid. Is there a workaround to find the user location on a device? Here's the code I am using code....
View 2 Replies
View Related
Nov 6, 2010
Sometimes I'm browsing the web and... One more download... And then oops! Another one...Then I realised that those downloads are still in my download list and there's no option to COMPLETELY remove them. Also, where do I clean browser's temporary files?
View 3 Replies
View Related
Apr 24, 2009
Can anybody advice what is the recommended directory to store files generated by your application: audio files, video files or some images.
If the phone contains SD card, it is clear that files should be saved there, but if there is no any external storage. where would you recommend to save to?
View 2 Replies
View Related
Oct 21, 2010
I cant send any files(pictures,mp3 files) through bluetooth.
Can anyone give some solution on how it works?
View 2 Replies
View Related
Mar 19, 2009
I wrote an app that downloads web sites and all their assets (images/stylesheets) to "disk" and therefore stores lots of small files on the SD card.
Sometimes it fails to delete large amounts of files and afterward the file system is r/o. To analyze that behavior I tried to do the removal of the files by hand and then go from there. But that already failed.
localhost:~ mkamp$ adb -d shell mount [.. some mounts ..] /dev/block/mmcblk0p1 /sdcard vfat rw,dirsync,nosuid,nodev,noexec,uid=1000,gid=1000,fmask=0711,dmask=0700,codepage=cp437,iocharset=iso8859-1,utf8 0 0 --> R/W
Last login: Wed Mar 18 19:41:49 on ttys005 localhost:~ mkamp$ adb -d shell rm /sdcard/newsrob/a* [.. minutes of silent deletes ..] rm failed for /sdcard/newsrob/a2aade03616c28b30_113.png, Read-only file system localhost:~ mkamp$
localhost:~ mkamp$ adb -d shell mount [.. some mounts ..] /dev/block/mmcblk0p1 /sdcard vfat ro,dirsync,nosuid,nodev,noexec,uid=1000,gid=1000,fmask=0711,dmask=0700,codepage=cp437,iocharset=iso8859-1,utf8 0 0 --> R/O now
The log contained nothing but the usual gc output and random WiFi status changed mumbo jumbo.
Anybody else seeing this behavior?
There were 6.500 files in that directory. Might that be the problem? I don't access the files with queries, I always have the exact name.
View 5 Replies
View Related
Nov 4, 2010
I am working on an android app. Where i need to parse some plist files from assets folder. I do understand how to use assets in android but now problem is that file sizes are more than 1MB and so android gives error Data Exceeds UNCOMPRESS_DATA_MAX (2183588 vs 1048576). how to access such larger files from assets? Also I cant reduce a file into small buffers because i am just sending it to "DocumentBuilder.parse(in)" as a whole so can not use buffer. The error is on line: Document doc = db.parse(in).
View 1 Replies
View Related