Android :: Locating Local Hospitals In Android
Nov 28, 2009
I want to be able to plot every hospital within 10 miles of my current location on the map in Android. I've already started with this code as a base (http://android-er.blogspot.com/2009/11/androidlocation-with-zoom-level-control.html) I just need to plot the locations of hospitals without switching to another screen.
View 3 Replies
Nov 11, 2010
I published an application that stores data in a local database.
Now I have to publish an update to this application to fix some little bugs, but I am afraid that downloading and installing the update will delate the local database associated with the previous version.
I would like to know how the update system works. Will installing an update completely delete all the apk, files, databases associeted with the previous version?
If so, how can I avoid this in my code?
View 2 Replies
View Related
Jul 30, 2010
I seem to almost always come back to this forum while doing a android related google search so I thought I would post this here.I am looking for an app that would allow users to share their gps location with their friends on fly (Live). It would be used for riding atvs on wooded trails. While riding in groups it become difficult to keep together as the trails split. We almost always have cellphone signal while we ride and would just like to upload our current gps location. Note: It would also be great if we could mark the trail on the map and share it with the group.
View 19 Replies
View Related
Apr 9, 2010
I am trying to find an app that I can search for a product and it will tell me what store has it. I have one called Shop Savy but that requires you to aim your phone at the barcode which is different from what I am asking.
View 1 Replies
View Related
Nov 24, 2010
I was just wondering if there is a prank app to fake like if your phone can locate people or phones. Or is there an apk file that I can download?
View 4 Replies
View Related
Mar 12, 2012
What's the best app on the android market for locating a stolen phone?.
I'm looking for something which can relay the approximate phone location (based on gps/wifi) and lock the phone. Also, being operate with a different sim card would be a plus.
View 9 Replies
View Related
Apr 14, 2010
c:Program FilesJavajdk1.5.0_13in>keytool -list -alias androiddebugkey -keystore "C:androiddebug.keystore" -storepass android -keypass android And i keep getting the error keytool error: java.lang.Exception: Keystore file does not exist: C:androiddebug.keystore Ive also tried entering the keystore in from its original location rather than moving to c:android but still get the same error! Does anyone have any idea why this is happening?
Also is there any other way to get this MD5 fingerprint? some program maybe?
View 3 Replies
View Related
Nov 8, 2012
I've just started creating some Android application and I successfully made application that locates user's latitude and longitude.
Well. The problem is that I am interested about the way how android does that with maps tools since my application starts a GPS and it takes like 10 minutes, before it finds a location indoors and maybe sometimes it doesn't even find a GPS indoors, but if I use Maps application that comes with phone it works fine indoors and outdoors it's same where I am.. the location I'm standing on is directly found without waiting any minutes. (I've changed a place and it's directly there without waiting)
Can it be done as easily as GPS locating?
View 1 Replies
View Related
Nov 14, 2010
in my android application i have address, when i click a button i have to call google map api and show the exact location of that address. how to use that google map api in android , and also how to send the addess to the particular api to locate it?
View 1 Replies
View Related
Aug 6, 2010
Is anyone having trouble locating the facebook for android app in the marketplace? I had uninstalled this app as it was completely messed up when I got my first android last week and went to go find it in the market place and it is no longer there...I tried using the barcode for the location in the marketplace to no avail and even tried clicking the link on the bottom of the webpage while using the browser that said "download facebook for your moment" which brings me to an error message that states "the requested item could not be found"
I found a couple posts on the facebook for android page with the same problem but there were no responses.
View 12 Replies
View Related
Jun 12, 2013
Im having trouble finding my guncrafter folder on my galaxy tab 2!
View 3 Replies
View Related
May 25, 2010
I'm having a problem finding picutres or wallpapers saved to my sd card on my eris. I have Astro File and I just bought a wallpaper from Verizon and it says it's saved to my sd card yet I can't find it anywhere. I checked my photos, and all the folders in astro. Any clue on what I'm doing wrong or where else it could be?
View 13 Replies
View Related
Nov 4, 2010
My weather widget no longer will relocate me, even after manually updating.
View 4 Replies
View Related
Jul 15, 2013
I've been using IPP podcast player to download songs/podcast onto my nexus.But when I plug it in to my laptop I cannot find these songs or podcast anywhere. On IPP podcast player it gives me the option of where to store the songs/podcast. Even when in change this and look for them, the folder doesn't exist.
View 1 Replies
View Related
May 7, 2010
I downloaded some ringtones from myxer.com and there on the phone. I can go to settings and set them as a ringtone however when i go to them in file manager or astro the file manager that i use from the market place they are no where to be found on my memory card. Does anyone know where they might be stored on the phone.
View 8 Replies
View Related
Sep 29, 2010
Folks, I am wondering if anyone here can recommend a way of listening to a couple of local/regional radio stations on my HTC Desire, running Froyo on o2 in the UK The stations are Northsound 1 in the Aberdeen area, and BBC Radio Scotland FM. I have tried A Online Radio and Myplayer, neither will recognise the stations even when entering the url I would use in the pc's browser to listen online at home. Only reason I want to stream these is the non-existent reception using the native FM radio app in the phone.
View 7 Replies
View Related
Jul 16, 2010
I don't see the point of using a local service in Android. If I want to do backgound stuff, I can create a thread and use Handlers.
Creating a local service is a big headache, you have to mess with Binders, worry about the start/stop/bind/unbind lifecycle, etc.
What does a local service get me that a thread doesn't ?
View 2 Replies
View Related
Oct 6, 2010
I have an application which requires networking service. I took on LWUIT4IO and adjusted it to my needs so now i have a network queue that can run one or more network threads.Now, my application is based on single root activity that spawns other child activities as needed (it's a reservation center for vacations, car rental etc.. each in it's own activity). The network is common to all and should be used by all activities. the network thread requires, basically, a callback to notify it's finished and return the result (input stream or byte array) .At first i thought that i should use a service instead of a singleton that will be started in the root activity(the service will also be started in the root activity), however working with a local service is problematic for me: 1. no callbacks which makes me use intents to encapsulate the request esponse in intents time consuming, also since there is not single point of listening (i have to use BroadcastReceivers)i have to add a calling class name or some other identifier so the sender of the request will know it's for him, i think this is also a waste of time and resources since i need only one listener.
i think i CAN use callbacks if i use Binder object to return local instance of my Service and then use the queuing method directly, this is problematic for me as acquiring Binder object is asynchronous and i need it 'on the spot' 3. I thought of using a static instance of the service and null it in onDestroy of the service, but if i use that way, i'm not so sure i need a service... 4. i saw a small answer in stackoverflow about inheriting application and putting whatever member you need there so when you use getApplication you get this instance and then you can retrieve whatever you want, is this even advisable ?
View 5 Replies
View Related
Aug 5, 2010
Can anybody tell how to run the local webapplication using android webview. I want to run my own webpages in android using web view.
View 2 Replies
View Related
Nov 16, 2010
I'm developping an android application. This application use a web service to get some informations. The web service is deployed on local in my computer. When i run my app with the android emulator, everything is ok.The emulator use the address 10.0.2.2 to use the local web service.Now i would like to know if it's possible to connect my mobile phone to my computer and to have access to my local web service.In others words, use my own mobile phone instead of the emulator.
View 4 Replies
View Related
Jun 19, 2010
I have some web pages that I want to bundle with my Android application and display as static pages. Where do I put them? How do I access them? I'm working in Eclipse, so I want a solution that automatically bundles them.I've tried putting my web pages in res/raw, and I can read them as an input stream from there, so I could push that into a WebView. But I'd really prefer if I could stick them somewhere and access them with a URL. I've tried file:///android_asset/about.html but that didn't work. Surely there's a way to form a URL to display bundled pages.
View 2 Replies
View Related
Dec 15, 2009
i am looking for a good live straming tv app. anyone know of one, pref with local channels (i am in NY)
View 2 Replies
View Related
Oct 5, 2009
I am very new beginner, and I am designing a small application as below.
- After a user starts the application, he/she can click the start button to start a background task. (e.g. retrieving the news headlines periodically, then do something...)
- Even after the user quits the application, the background task still running.
- To stop the background task, the user needs to run the application again, and clicks the stop button to stop the background task.
In the above scenario, what API should I use ? (Local Service Binding ? Remote Service Binding ? Handler ?)
View 2 Replies
View Related
Apr 17, 2009
I have ListView whose CursorAdapter is bound to my local database table. Is there a good way to make it so that when new entries / new data is inserted into my table, my ListView automatically refreshes?
This is easily done on ContentProviders via ContentObservers. How do I do the same when iterating over local databases?
View 2 Replies
View Related
Jun 11, 2010
I'm starting a service in my application using startService.
I do not want to use bindService as I want to handle the service life time myself.
How can I get an instance to the service started if I do not use bindService? I want to be able to get a handler I've created in the service class to post messages from the activity.
View 1 Replies
View Related
Apr 1, 2010
This thread is to discuss the pros and cons of each travel app and recommend your favorite one(s). Please mention ones that aren't listed above in the poll too!
I'm not sure if "local" is the correct term to use but I'm just talking about apps like, Yelp!, WHERE, Google Places Directory, etc. I've downloaded most of them but, as with most things, there's a few things I like about each and none of them are "perfect" in my view. So I was just curious what everyone's opinion was when it came to all these apps and which one they like the best and why.
View 8 Replies
View Related
Jun 11, 2010
I dont want just news. i want to look at the TV channel (video) any program to access local TV ?
View 1 Replies
View Related
Jul 1, 2009
I'm trying to read some local files, and ive been reading a lot of stuff about it, but i still don't know where to store the files on my phone and how to get the right path. Some say, it should be stored on /data/data/your.package.here/files but where is that, i mean i can get there when using the emulator but i have no clue how to put files in this on a real device.
View 7 Replies
View Related
Jul 26, 2010
All of the android examples for XmlPullParser pull from a local resource file, and all of the SAX examples pull the XML from a URL. I've been told SAX is faster, so I'm trying to use that to pull data from a local resource file (res/xml/thefile.xml)
The example code I'm working off of is here. So in that example, the code I want to change is:
URL url = new URL("http://example.com/example.xml");
...
xr.parse(new InputSource(url.openStream()));
Instead of using URL, I want to use getXml(R.xml.thefile)
Is that possible, or does SAX need to get data from a URL?
View 1 Replies
View Related
Nov 27, 2009
I'm trying to get a byte array of an image saved locally on the phone. I'm using the code...
How can I get the Bytes?
View 1 Replies
View Related