Android :: Adding Labels To Points On Map?
Jan 6, 2010
I'm trying to add a label to each of the points on a map that I've created. Setting the "title" and "snippet" values of the OverlayItem don't seem to automatically cause these labels to appear however. I would've thought this would be a pretty simple and common requirement. Am I missing something? Can someone tell me if there's a function that does this?
View 3 Replies
Nov 20, 2010
I think google maps/nav is great, the only problem i have with it is choosing my route or putting via points in, is there anyway of doing this? on laptop i can create my own route my dragging, and then via chrome to phone i can send it to my phone, but i want to know if there is a better way of doing it or a way that i can do it and just use my phone. any suggestions? if there was a way of adding via points would be good?
View 5 Replies
View Related
Nov 13, 2013
I use an AppLocker on my daughter's phone. It works great, but there is one problem it causes.I need to keep her and others out of the settings so it's blocked. But I need to be able to allow her to add access points so she's not eating away our data plan.
Is there an App Locker that will allow this? Or is there an alternative Wifi manager that I could install and allow that would work even when settings is blocked?
View 1 Replies
View Related
Dec 4, 2009
I am starting with listactivity. I was able to create a simple list view using ListActivity and Arrayadapters. The problem before me now is i need a screen which contains a few labels and fields and under them a listview. how to go about it ? moreover whats the difference between layout and activity ? how well should i use them ? Until now I thought one application one activity, but after looking Apisamples i found myself wrong. A few correct links will help. is "busy programmers' guide to android dev" a good book ? Can I get a softcopy from somebody?
View 3 Replies
View Related
Feb 25, 2009
I've found that apps which come into my inbox bring up a notification, awesome. However, I have Gmail filters setup to sort out my numerous emails into various labels, but keep them unread. Is there a way to get notifications for new emails which go into those labels?
View 7 Replies
View Related
Mar 15, 2010
I am building a MapView and I want my custom overlay items to display the name of the location they are marking when the user taps them, like the Android Maps app. I setup the onTap listener and the floating TextView to hold the location name. I still need to set it up so that it redraws the label when the user moves the map, etc. Anyway, I am wondering if I am reinventing the wheel here. Is there a built-in method I am unaware of? I would think that most implementations of MapView have labels. For reference, my implementation so far: in map xml:
<LinearLayout android:id="@+id/mapBubbleWrap" android:layout_width="wrap_content"
andoid:layout_height="wrap_content" android:layout_alignParentTop="true">
<TextView android:id="@+id/mapBubble" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:visibility="gone"
android:background="#ffffff" android:textColor="#ff0000"/>
</LinearLayout>
in my extended ItemizedOverlay:
public boolean onTap(int index) { this.setFocus( mOverlays.get(index) ); return true; }
in my Activity onFocus:
public void onFocusChanged( ItemizedOverlay overlay, OverlayItem item ) {
if( item != null) { mapBubble.setText(item.getTitle());
Point newPoint = mapView.getProjection().toPixels(item.getPoint(), null);
mapBubbleWrap.setPadding(newPoint.x, newPoint.y-10, 0, 0);
mapBubble.setVisibility(View.VISIBLE); } }
View 1 Replies
View Related
May 3, 2010
I want to add a contact just to my phone and not to my gmail account.Whenever I start to add a contact (phone, 208544.menu, +contact, create new contact,) the next thing it forces me to do is to choose an account to create the new contact under and it lists my 3 gmail accounts.I have no option to just put it on the phone.Any ideas here?We do the same thing on the Incredible but it gives us the gmail account and the phone to choose from but not on the Motorola.
View 4 Replies
View Related
May 25, 2010
I am new to Android. I plan to check for new mails on Google Mail (GMail) that are archived to their labels. Are there any examples that'll show how to do this (Gmail API, etc.?)? I searched a lot but found no helpful information about this, hope someone can help. What do I need?
Is there a way to check (with push) whether there are new mails in a label. I think the standard Gmail Android app could not do this!?
View 2 Replies
View Related
May 10, 2010
I have multiple email accounts & would love to find an app that will act like Thunderbird. I want to check all the accounts and look at one Inbox and see all the mail that has come in with different labels. Is there an app that will do this out there?
View 36 Replies
View Related
Jun 30, 2010
I just installed Folder Organizer Lite on my Desire in order to be able to change the icons on my home screen. It worked like a charm, but now I have a question. I am able to edit the name of the icons, for example I have changed Advanced Task Killer to ATK, but I would like to have the option to not have any text at all. When I go to alter the text as usual and just delete the text, nothing changes. So does anyone out there know how to completely remove text from underneath icons?
View 2 Replies
View Related
Mar 2, 2010
I designed the user interface of my app on the emulator and then I installed it on the Nexus one. For some reason the text boxes, labels buttons etc. have shrink in size. It looks as if the view has been zoomed out on the phone. If I arrange it correctly on the phone the objects don't fit on the emulator. Has anyone faced this? Is there some setting to have consistency between the look of the emulator and Nexus One.
View 7 Replies
View Related
Jul 27, 2010
I have a customized Cursor based adapter for my ListView. Each Cursor has a few columns of data, sorted by the priority column. I know you can create a disabled list item to act as a sort of header, like in the Market app (the little green labels). What I would like to do is display a header for each group of items with a different priority. They are already sorted by priority. Example data:
title, priority
note1, high
note3, high
note2, low
note4, low
Example of what I want in ListView:
= High Priority =
-note1
-note3
= Low Priority =
-note2
-note4
View 1 Replies
View Related
Mar 27, 2010
Comparing a MapView as used in an app through Google Maps API against the Google Maps app, I found that the granularity of all elements, most visibly, street labels, in Google Maps is bigger than the street labels in MapView. This is on a Nexus One, presumably other devices show a similar behavior. I did not find any hint in the documentation how to dial this for a MapView.
View 2 Replies
View Related
Jun 29, 2009
I understand the notion of overlays and all, but what if I want to display thousands of points on a map?The map becomes unresponsive after a few hundred OverlayItems are added.What's the best approach for doing this?
View 4 Replies
View Related
May 5, 2009
I am trying to write a code about catch lat. and long. points with the GPS, actually I am using the shell with the commands "geo fix" because the DDMS doesn't work in linux apparently, I am using this scripts:
getBestProvider(criteria, true); getLastKnownLocation(provider); requestLocationUpdates(provider, 2000, 10, locationListener);
The questions is: the program is working right now in the emulator, but what about if I move the program to the real cellphone? Is the same? I need think in something else?
View 2 Replies
View Related
Apr 29, 2010
I want to make a apps that check what's the nearest place from where the user is. I can easily get the location of the user and I have a list of places with latitude and longitude. What would be the best way to know the nearest place of the list against the current position. I could not find anything in the google APIs. I am worried I need to resort to my calculate and have to do math to calculate it.
View 2 Replies
View Related
Aug 1, 2009
I am just a beginner in the Android and was experimenting with HTTP.I have published the result of my experimentation through the following link http://kausikdas.webs.com/apps/blog/show/1489440-http-in-android. I am yet to get a device but working with the Simulator.I need feedbacks on the possible network problems I should handle. e.g.: 1. Do I need to discover the access points and dial one before connecting? 2. How can I know which services (Data/Data & Voice/Voice/No/Emergency etc.) current network is supporting? 3. Anything more to take care of?
View 3 Replies
View Related
Dec 6, 2009
I'm trying to develop an application which display the locations of contacts on a map (a Msn-like but for geo-localisation). I search to display a route between my own location and a contact location I want to join but I find yet no solution to do this. In the Android API and Maps add-on API I just find classes to display and listen Location, Distance, GeoPoint, etc., but no possibility to display a route between two points. Is it possible or not provided by the API?
View 7 Replies
View Related
May 23, 2010
Has anyone checked to see if 3 or more points will show up on an Incredible? I'm trying to see if there's hardware/driver/android support for more touch points. Why more touch points? I dunno. It could be cool for something. I read that the physical screen supports 10 but my first tests printing MotionEvent.getPointerCount() only give me 2.
View 2 Replies
View Related
Oct 7, 2009
Do anybody know how to draw path between two points on Map?
I need to draw a line, from one point to other...
I found one link (http://csie-tw.blogspot.com/2009/06/android-driving- direction-route-path.html) about this, but itīs not works well.
View 3 Replies
View Related
Jul 2, 2010
Hello everyone. Is there a feature or a check box that I am missing that allows you to turn off the little text labels beneath the application icons on the home screen? I'm kind of doubtful, but a search did not return an answer. It would certainly clean up the home screen. Plus a lot of labels are "cut off" due to length and that is just annoying.
View 10 Replies
View Related
Oct 18, 2010
Eventually found out how to do this as there was a customize feature on the HTC Magic. The solution is to do it through Google Contacts and then synchronize the contacts back to the phone. Simple - pity no one at HTC Support seemed to know.
View 10 Replies
View Related
Sep 1, 2010
We have used a Google domain and provided mail (gmail) for some time. Have quite a number of labels in use to file things. Only a few labels I need synced to my EVO. Inbox is obvious and is at the top of the list so easy to find etc. Problem is that the 4 or 5 others that I use regularly are all down the list in alpha order. Is there anyway to reorder the list of labels to bring the sync'd ones to the top or to filter so non-synced labels do not show in the list? Or perhaps shortcuts I could build on my home page to go directly to other than inbox?
View 1 Replies
View Related
Jun 11, 2010
Can it be done? is there an app for that?
View 8 Replies
View Related
Jul 16, 2010
I have some code that uses a network connection. I create a connection by calling openConnection() on a URL object. Is there any documentation that explains how this process works? Which access point is being used? When that access point becomes invalid, will it automatically switch to another accespoint? etc. I would like to use only WiFi access points and otherwise fail even tho 3G or GPRS could be available, is that possible?
View 7 Replies
View Related
Feb 9, 2009
I am developing an application on the android platform. The app performs continues WiFi scan and sends information about the list of visible access points to server. However, I need to remove all the Ad Hoc points. The android.net.wifi.ScanResult api does not seem to have any information on "mode" of the network. Is there anyway I can distinguish a given point is Ad Hoc or Master?
View 3 Replies
View Related
Sep 28, 2010
I would like to draw a curve(an arc) connecting three points in my screen PointA = (480,46) PointB = (160,137) PointC = (0,228) How to draw the curve using Android APIs ?
View 7 Replies
View Related
Sep 1, 2010
I am looking for a mapping application that will let me browse maps offline, as well as plot points onto the map. Does anyone have any ideas which app might let me do that? According to the MapDroyd app, it won't let me plot points
View 1 Replies
View Related
Dec 26, 2009
I'm making a game for android where I need to draw a lot of points that change position every frame. I use the ndk to get faster processing performance of the math/physics section of the game, so I need to use OpenGL to get the fastest performance. Right now, I make a texture every frame out of an array that holds the colors of every pixel. I am only able to get ~10 frames per second with this method. Is there anyway I could speed this up? ...
View 2 Replies
View Related
Aug 3, 2010
I have two devices - HTC Tattoo and Sony Ericsson Xperia X10. One has 145 DPI, the other 245 DPI.
When I specify font size for a TextView in points, like this:
CODE:...................
I get different physical size of text on these two devices. On 245 DPI, the text is barely readable.
Now, "pt" size is supposed to be physical. I.e., in my test, both text blocks should have letters of the same physical height. Which is not the case.
View 2 Replies
View Related