Android :: App Where You And Your Friends Can Add Each Other / See Each Others Locations Via Gps?

Jan 14, 2010

Is there an app where you and your friends can add each other and see each others locations via gps? I just thought it would be a cool idea, i didnt know if such a thing existed.

Android :: app where you and your friends can add each other / see each others locations via gps?


Android :: Need App For Tagging Locations

Nov 11, 2009

I am looking for an app that will allow me to tag locations. Preferably with a sat view option like Google Maps. I spend time in the woods and would like to tag specific locations so I can return later. Any ideas?

View 1 Replies View Related

Android :: Locations Of CSV Files ?

Oct 3, 2010

I'm having trouble reading in from a .CSV file in an android app. Mainly a "FileNotFound" error. Where would be the easiest place to put the file, and what would be the address to it. I have been messing around with a few different places but have had no luck.

View 1 Replies View Related

Android :: Others Locations Through Google Latitude?

Apr 8, 2010

How do you get other friends to show up with their locations?

View 12 Replies View Related

Android :: How To Show Set Locations In A Google Map?

Sep 28, 2010

I am looking to create a map application. I want it to show a location that user selects from a list and show here the location is, then add a button on the map so that the user can navigate from there current location to the one selected. I have looked at tutorials but cannot find anything that does this. Anyone know where I might find a tutorial that shows this or how I can extend my simple map to show a given location.

View 1 Replies View Related

Android :: Debugging Geo Locations Services

Jan 20, 2009

I wrote some reverse geocoding, geolocation and proximity alert routines for my little Android app. I took my Android out with me when running errands to test my routines; they're kinda hard to test from my couch. Half of them didn't work. What's the best way to debug something like this? Sprinkle a bunch of printf statements (or whatever you call them in Java) throughout the app? Log everything to the sdcard? Write a toggleable view (is that even possible?) that acts as a console? Faber Fedor Cloud Computing New Jersey http://cloudcomputingnj.com

View 6 Replies View Related

Android :: Way To Get Direction Between Two Locations In Droid?

Aug 2, 2010

Is there any way to find the direction between two locations in Android?

View 3 Replies View Related

Android :: Distance Between Two Locations Isn't Right / Get It Correct?

Jul 15, 2010

I have used the algorithm on http://www.movable-type.co.uk/scripts/latlong.html to find the distance between two points.

My two points are

long1 = 51.507467;
lat1 = -0.08776;

long2 = 51.508736;
lat2 = -0.08612;

According to Movable Type Script the answer is 0.1812km

My application gives the result (d) as 0.230km code...

View 2 Replies View Related

Android :: 10 Nearest Locations From The Current Location

Oct 11, 2010

Im doing app in which, uses sqlite db file to get data. table in db having shop name, address,city, latitude, longitude etc columns.

Im able to get cureent location latitude and longitude and also able to calculate the distance between current location and the location of a shop(in db) using longitude and latitude values.

Here my issue:
I need to get/display 10 shopnames(from db) which are nearest(distance) to the current location.

View 3 Replies View Related

Android :: Draw A Bitmap By Specifying The X Y Locations Of Four Corners

Mar 1, 2010

I want to draw a bitmap on the screen by specifying the x,y locations of the four corners. I.e. I have a square bitmap and I would like to draw the:

CODE:.........

I have seen the Canvas method: public void drawBitmap (Bitmap bitmap, Rect src, RectF dst, Paint paint)

However I believe this takes the top, right, bottom and left coordinates to draw the Bitmap and not the corner coordinates. I need to specify the CORNER coordinates to draw the bitmap as I may need to stretch/distort the Bitmap (I am drawing the Bitmap on a 3D spherical model).

View 9 Replies View Related

Android :: Projects In Two Different Locations And Importing In Eclipse?

Mar 10, 2010

I always face this problem in my eclipse. I would like have a copy of the apps in all the versions of SDKs/NDKs. And once I have a project in eclipse, and if I have to import the same project from a new location, I get the message saying "Can't import, project of the same name already exists". Is this how it is? We cant import the same project from its 2nd location in eclipse? Everytime I delete the project from old location and put it in new. I know, it is a very unacceptable approach).

View 2 Replies View Related

Android :: Best Way To Store Many Point&radius Locations

Mar 1, 2010

I want to store locations in my Android phone and be able for the application to tell me if I am inside these points&radius.What is the best way to store many point&radius locations and efficiently query for them?

View 1 Replies View Related

Android :: Need Mileage Tracking Application For GPS Locations

Nov 20, 2010

I'm looking for a Mileage Tracker App, if anyone knows of one. I plan on driving from location to location frequently throughout my work day, and I'd like to be able to save time on keeping track of my mileage by having an app that does it for me. What I'm looking for is to be able to get in my car, have the GPS on, open the app and press start. From there, I want the GPS to track my location, just like it would do for navigation. When I get to my destination, I want to be able press stop and have it tell me (and log on a daily, weekly, or monthly page) the mileage for each trip.

i.e.
11/20/10 3:35pm - 3:50pm 10.3 mi [View Map]
11/20/10 5:22pm - 5:45pm 24.6 mi [View Map] <--- Button to press to view map
I'd also like for it to record the path I took on a map (as seen above), so that I can easily identify where I am driving to and from, when trying to fill out a mileage sheet.

View 6 Replies View Related

Android : Get Image Locations On SD Card / At Least Taken By Camera?

Nov 27, 2009

Am looking for a way to find images on the SD card, or at least images taken by the camera.

The ideal solution would be getting a collection of file paths or URIs for the images. I guessing you can do this through the MediaStore I just can't figure out how.

View 1 Replies View Related

Way To Determine Locations Inside Buildings For Android?

Oct 13, 2012

These days I work on a program to locate a user application inside the buildings, I think it can done by GPS .But I read on the Internet that GPS does not work inside buildings, is there a way to determine the user's location inside the building or user tracking inside the building.

View 4 Replies View Related

Android : SQlite Getting Nearest Locations With Latitude - Longitude

Sep 12, 2010

I don't know if I'm wierd, but I haven't found any topic about the subject. The thing is, I have data with lat and lng stored in my SQLite database, and I want to get the nearest locations to the parameters I put in (ex. my current location - lat, lng).I know that this is possible in MySql, and I've done quite some research that SQLite needs a custom external function for the Haversine formula (calculating distance on a sphere), but I haven't found nothing yet, that is written in Java and is functioning.Also, if I want to add custom functions, I need the org.sqlite .jar (for org.sqlite.Function) and that adds unnecessary size to the app.The other side of this is - i need the Order by function from sql, because displaying the distance alone isn't that much of a problem - I already did it in my custom SimpleCursorAdapter, but I can't sort the data, because i don't have the distance column in my DB. That would mean updating the DB everytime the location changes and that's a waste of battery and performance. So if someone has any idea on sorting the cursor with a column that's not in the database, I'd be grateful too!I know there are tons of Android apps out there that use this function, but can someone please explain the magic.

View 1 Replies View Related

Android :: Droid Program To Display Rout Between Two Locations?

Aug 6, 2010

Does anyone know how to do google map program in android by inputing two location's name and now one can see the rout between them

View 2 Replies View Related

Android :: No Facebook Friends

Jul 25, 2010

I have an HTC Incredible and it worked fine, but I accidentally took facebook off the sync list, I put it back on and logged on. When I use the facebook app everything is fine, but the people apt thinks I have no facebook friends and so I can't sync any of them to my contact list!

View 1 Replies View Related

Android :: App For Finding Friends?

Oct 12, 2010

I am wondering if there is an app that tracks friends by GPS? For example, you enter their number and it shows location on a map.

View 1 Replies View Related

Android :: Distributing My App To Friends

Jan 20, 2009

How do I distribute my app to some friends who have G1s (yea, I'm looking at you, Scott!) for QA testing and feedback? My app certainly isn't ready to be put into any of the marketplaces. I don't have a problem giving out the source code, but I'd prefer to give him a nice binary file to install. Besides, I can see problems with keystore.debug and compiling and the like.

View 3 Replies View Related

Android :: Google Maps Navigation To Predetermined Locations In Database

May 4, 2010

I want to develop an gps application that can navigate to some predermined locations in a database. I have created a mapview wich is working just fine, I also have a MyLocationOverlay to show my position and I have a ItemzedOverlay to show the locations to which I want to navigate. the problem is the creation of a route from the phones location to a predermined location.

View 3 Replies View Related

Android :: Connect Our Blackberry Friends

Aug 8, 2010

hello there, is there any messenger to connect our blackberry friends on our android mobiles with their blackberry messenger client?

View 4 Replies View Related

Android :: Getting Friends List From Facebook

Aug 13, 2009

How to get Friends List from Facebook using Code.

View 3 Replies View Related

Android :: Facebook App That Searches For Friends

Dec 21, 2009

I find in social situations that many people say add me as a friend on FB. but the droid FB app dosent let u seach for people other than your friends or add new friends. is there an app that allows you to seach for a person and add them as a friend?

View 5 Replies View Related

Android :: Sync New Facebook Friends

Oct 13, 2010

When I add new friends on facebook or put new contacts in my phone, I can't link them because we weren't friends when I installed the app. I've tried re-syncing facebook for HTC sense, and tried uninstalling it (it won't let me uninstall for some reason)

View 2 Replies View Related

Android :: Facebook App That Shows Friends

Jul 20, 2010

Is there a FB app that shows what friends are online?

View 2 Replies View Related

General :: Any People / Friends App Or Hub For Android?

May 26, 2013

I recently made the switch from windows phone 8 to the HTC One and I am really missing the people hub or groups feature of windows phone. It allowed me to put some of my contacts into groups. For example, I had 2 groups, 1 for family and 1 for friends. In these groups, it collected all the facebook, twitter, and other social feeds of those people and put them all together.

I really liked this feature because I could easily look at filtered social feeds for certain people without having to flip through each app separately. I often saw posts/tweets that I would have otherwise missed.

Is there a similar app or feature on Android that would give me this functionality? I have yet to find it.

View 2 Replies View Related

Android :: Display Thumbnails Of Images (present At Different Locations In Sdcard) In A Listview?

Feb 15, 2010

I have several images present in different folders in my sdcard. I would like to display a list of thumbnails. So what I have done is while rendering any row in the list I read the file in an input stream, get the byte array, decode it to obtain a bitmap and set it in an imageview.

So far so good. But when I scroll the list, the list scrolls in jerks. I believe this is because decoding a bitmap from byte array takes some time. What I would like to know is that, is there any optimization which I can do to improve the performance, or better still is there any better method to achieve what I want ?

View 2 Replies View Related

Android :: Messenger To Connect Our Blackberry Friends

Aug 8, 2010

is there any messenger on android to connect our blackberry friends through their blackberry messenger.?

View 1 Replies View Related

Android :: Remove Facebook Friends From Phonebook

Apr 26, 2010

How do i remove facebook friends details from contact/phone book.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved