Android :: Correct Location For Hierarchical File List
Jul 21, 2010
I have a simple app which needs to display 1 of many text files (DB is no an option currently)
Where is the best place to put this collection of text files? I am guessing "Assets", but am unsure.
View 1 Replies
Oct 13, 2010
I have a hierarchy 3 levels deep that I'd like to show as a list where the items can be expanded or collapsed to show the lower level with some way (like an indentation) to distinguish between levels. Is there a widget for this?
View 12 Replies
View Related
Mar 16, 2010
I'm using the weather widget but it keeps saying I'm in,philly but I'm in nyc. Been here for two days. Anyone know how to fix this.
View 3 Replies
View Related
Jul 17, 2010
In the last few days the stock HTC weather widget will not change locations even in a new area and forcing a refresh.
View 18 Replies
View Related
Oct 24, 2010
So my gps location puts me close to 500 miles away from my actual location. Ive pulled battery, turned gps off n on, turned location settings off n on and I still cant get it to locate me correctly....any tips?
View 2 Replies
View Related
Jun 28, 2010
I'm not sure if this is the correct place to post a question about a problem I'm having with my htc hero. Can anyone direct me to the correct location?
View 5 Replies
View Related
Oct 13, 2010
My google maps is not finding me in the correct location
View 1 Replies
View Related
Sep 19, 2010
I don't understand this. When you hit the back button after following a link, you go back to the previous page, but not where you left off. The browser seems to just throw you somewhere near the top of the page. Is there a settings fix for this, or is it just how it works?
View 10 Replies
View Related
Nov 14, 2009
My google maps identifies me in india despite havving active network and wifi connection...anybody else have this issue and can it be fixed?
View 2 Replies
View Related
Aug 5, 2010
When I stream music using the MediaPlayer, it gives me the wrong song duration. Has anyone else encountered this?
View 2 Replies
View Related
Nov 10, 2010
This question has been asked [numerous times] before, but I have not seen any definitive answers, or examples of code that actually works. I would like to associate an Activity with a particular file type. For discussion, assume that I want my Activity to be associated with PDFs. Here is what I currently have. I have experimented with many different values and combinations of values in the intent-filter, but I have yet to get my Activity to start when a PDF is selected.
<activity name="com.mycompany.MyActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="file" />
<data android:mimeType="application/pdf" />
<data android:pathPattern="*.pdf" />
<data android:host="*" />
</intent-filter> </activity>
View 1 Replies
View Related
May 16, 2012
I've noticed that when using a flashable zip, the files that are copied over retain the same timestamp as the other files in that directory.
I am using the 'package_extract_file' command through the updater-script. Is there a way to change the timestamp on the files that have been copied over to system folders to reflect the correct time/date (through the script)?
View 1 Replies
View Related
Aug 24, 2010
I am new in android. I want to create Hierarchical menu. So will you please guide me how to create the Hierarchical menu.
View 6 Replies
View Related
Oct 3, 2010
Why doesn't the following code align with the center?
CODE:..............................
View 1 Replies
View Related
Jan 23, 2010
Anyone else have an issue with the camera "store location" not getting the correct GPS (if at all)? I just noticed that I was taking pics and saw that the GPS location was from the last place I had used the GPS some 50 miles away (time stamp too). it wasn't the only one.
just wanting to know if I'm going crazy, I don't see this being on the support forums so I'm also asking there too.
oh, and yes I was out doors, opening up maps will update gps and then camera will be accurate.
View 2 Replies
View Related
Oct 6, 2010
I am unable to install the USB drivers for Windows XP - I have downloaded the correct zip file, but the drivers are marked as being detrimental to Windows XP somehow and they just won't install. Can I copy them out of the zip file and manually put them somewhere? I'm inching ever so slowly towards rooting and am trying to get my ducks in line - but they're not cooperating.
View 8 Replies
View Related
Aug 12, 2010
For some of the albums/songs it says Unknown Artist but when I look at the files they are all in the proper folders with correct names. I added music using DoubleTwist if that helps.
View 4 Replies
View Related
Jul 1, 2010
I was thinking how awesome it would be to create a to-do list at home, set the location, then have it pop up when you get into the set range. Does this exist already?
View 1 Replies
View Related
Sep 2, 2010
I have a binary file which contains image. I have to jump on different locations in file to read the image file. So far I am using mark and reset methods but these are not helping me as I want. And I am using Input Stream to read the file.
View 2 Replies
View Related
Aug 17, 2010
i have a map file which has several tile images in the form of binary data. now i have to jump my index to different location of the file and read that tile. but i could not find anything helpful for me i also checked mark() and skip() methods.but not helping me.is there any method or class which can do what exactly i want or any hint you want to give me.
View 1 Replies
View Related
Jul 31, 2010
I am currently making an app which works with images. I need to implement functionality where the user picks a file stored on the SD card. Once they pick the picture (using the Android gallery), the the file-location of the image will be sent to another Activity, where other work will be done upon it. I have seen similar posts here on SD, but none to answer my question specifically. Basically this is the code I am doing when the user clicks the "Load a Picture" button:
// Create a new Intent to open the picture selector:
Intent loadPicture = new Intent(Intent.ACTION_PICK,
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
// To start it, run the startActivityForResult() method:
startActivityForResult(loadPicture, SELECT_IMAGE);
From that code, I then have a onActivityResult() method to listen to the call-back:
// If the user tried to select an image: if(requestCode == SELECT_IMAGE) {
// Check if the user actually selected an image: if(resultCode == Activity.RESULT_OK) {
// This gets the URI of the image the user selected: Uri selectedImage = data.getData();
// Create a new Intent to send to the next Activity:
Intent i = new Intent(currentActivty.this, nextActivity.class);
// - Problem Area -
// I would like to send the filename to the Intent object, and send it over.
// However, the selectedImage.toString() method will return a
// "content://" string instead of a file location. How do I get a file
// location from that URI object? i.putExtra("PICTURE_LOCATION", selectedImage.toString());
// Start the activity outlined with the Intent above: startActivity(i);
As the code above states, the uri.toString() will return a content:// string instead of the file location of the selected picture. How do I obtain the file location?
Another possible solution is to send over the content:// string and convert that into a Bitmap (which is what happens in the next Activity). However, I don't know how to do that.
View 1 Replies
View Related
Mar 18, 2009
I want to move some files from sdcard to /data/data/myapp/files folder, I can use OpenInputFile and OpenOutputFile and write to it, then delete the original one. But it is slow, so, I tried to use oldFile.Rename(newFile), but it always return false. Any idea? The reason I am doing this is to hide some files from my sdcard, so, nobody can see them.
View 3 Replies
View Related
Dec 15, 2009
I realize this isn't exactly a programming question. However I seem unable to discover this information elsewhere, so thanks if anyone can answer this. I'm on a Samsung Moment running Android 1.5.
Is there an official support forum for this type of question, or a preferred forum along the lines of ubuntuforums.org?
View 2 Replies
View Related
Sep 14, 2012
I've been looking through the filesystem of android, and for the life of me cannot find the files that make up the settings menu in android. It's been a long while since I've attempted modifying anything myself.
View 2 Replies
View Related
Dec 28, 2009
Just a quick thank you to all the regulars who give up their time to populate these forums with some great advice that has made my first week of Hero ownership so much more fruitful. Now I wish to move a photo from one place to another folder using Astro and somewhere I'm losing the plot. I long press the photo, I then choose edit, then move......but then how do I actually move the photo/file to it's new location?
View 2 Replies
View Related
Jun 29, 2012
where the save file is located for sonic 4 ep 2?
sonic 4 ep 1 was saved to /sdcard/Android/data/com.sega.sonic4epi/files
no folder exists for ep 2 and I really hope its not in /data/data cause I wanted to transfer to my non-rooted tablet
View 1 Replies
View Related
Jan 12, 2012
Basically I'm just looking for the location of the file for drafts on the Twitter app and the location of it. It has to exist somewhere and I've already spent about an hour looking for it with no luck.
View 2 Replies
View Related
Jul 22, 2010
I want to make a loop that in my main.xml creates a button for each item in the list. But I cant see a way to loop in the xml file and create more buttons that way.
View 2 Replies
View Related
Sep 22, 2009
I have this method in my .aidl file:
CODE:...............
But I get this error.
CODE:..............
How to create a List of MyObject in .aidl?
View 1 Replies
View Related
Jul 23, 2010
So does anyone know the location of the sound file for the double-beep camera focus? I found the "camera_click" and the "videorecord" sound files but don't see the one for the focus. It's not located in system/media/audio/ui like the other 2 camera sound files.
I really hate the double-beep focus sound and yes I know 3rd party camera applications will enable you to silence it but I was looking to just replace the sound file with a silent sound file instead.
View 2 Replies
View Related