Android :: Difference In MapView Elements Size (Street Labels)

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.

Android :: Difference in MapView Elements Size (Street Labels)


Android :: Text Boxes / Labels Buttons Shrink In Size

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

Android :: Draw MapView - Rectangles That Automatically Re-size When User Zooms In And Out

Aug 26, 2010

My Android application has a MapView. I want to divide that MapView into a grid according to latitude and longitude, and shade the different cells of that grid different colors based upon a certain criteria. What's the simplest way to do this?

I could create semi-transparent, solid-color PNG Drawable rectangular images and put them in an ItemizedOverlay centered on the central points of the cells, but then the rectangles would grow and shrink as the user zoomed in and out on the map. I could extend MapView and override the zoom functions so that the rectangles got re-sized when the user zoomed, but that seems really complicated for something that should be simple! Please tell me a better way to do it?

View 1 Replies View Related

General :: Difference In App Size Between Android And Titanium Backup?

Sep 30, 2012

I was just wondering why the app size in android (Settings > Applications > Manage applications) is different to the size in Titanium backup (Overview of app storage use) and which one is the correct size?

eg. According to titanium backup, the total size of Jelly defense is 51.6MB whereas android says that it's 112KB

Angry Birds size is 18.5MB according to titanium but only 1.30MB in android.

Skype is 16.7MB according to titanium but only 2.11MB in android.

View 4 Replies View Related

Android : Save / Activity With MapView And After Reload Same Mapview?

Jul 16, 2010

I had found a lot of stackoverflow post about save an Activity and the reload it.

My question: How can I have an Activity with an MapView and after reload the same mapview?

What is the best way to switch between activity and views?

View 2 Replies View Related

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 View Related

Android :: Need Screen Which Contains A Few Labels Under Them Listview

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

Android :: Any Way To Get Notifications For New Emails Into Labels?

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

Android :: What Is Street View Add-on In Market?

Nov 26, 2010

My version of Maps already has Street View, so does the add-on act any differently than what I can already do?

View 3 Replies View Related

Android :: How To Get Addresses For Street Intersection

Nov 10, 2009

In my work, I've to store some addresses and display them on the map. Some addresses we get are street intersections. GeoCoder does not give any addresses for street intersections. For example, the following does not work. addresses = geoCoder.getFromLocationName( "Broadway and 42nd, New York, NY", 1); Are there any alternative to use geoCoder for such lookups? Am I doing anything wrong?

View 2 Replies View Related

Android :: Map Overlay Labels - Display Name Of Location

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

Android :: Google Maps Street View

Oct 27, 2008

When I'm at work, street view can be fun for filler time. Or if I'm looking to go on vacation it's handy to see what's around the area.

But really tho what are you guys using street view for on your phone other than to show you friends who own Iphones how cool it it? Are there functions that I'm missing?

To me it almost seems useless for a handheld device. Even if it moved real time as your walking all it will show you is what you would see right now ... only 6 month to a year ago.

So my question .... is anyone using street view for anything useful .... or am I missing something.

View 17 Replies View Related

Android :: Street View On Google Maps

May 18, 2010

It used to work but now it has gone missing. GM has updated to 4.2.0 (#4210) and i wonder if that removed it?
It's not in the Layer menu. If I hold finger down on a location it doesn't come up in a menu from that either So how to I get it back?

View 3 Replies View Related

Android :: Launch Google Street View From App

Sep 13, 2010

I cannot find anything in the sdk regarding google street view. do we launch it from the web?

View 3 Replies View Related

Android :: Free Offline Street Maps?

Oct 11, 2010

Are there any good free offline maps apps for Europe including navigation features?

View 4 Replies View Related

Android :: Street View Availability Check

Jul 31, 2010

What is the best way to check if street view is available for a GeoPoint location? There seems to be no way of figuring this out, but the map google app grays out the street view button if not available?

View 2 Replies View Related

Android :: Highlight A Street Using Google Maps API?

Oct 11, 2010

Is there any possibility to highlight a street using the Google Maps API? I want to set a color on a street, similar as it is done in the navigation function of Google Maps.

If there is no generic implementation for this - and I guess there probably isn't - is there any good/simple solution for this? The only thing I could think of was reverse geocoding coordinates and see if those coordinates resolve to the street I want to color and if they did I would then draw some color on to those points. But this is a really ugly solution.

View 1 Replies View Related

Android :: Check New Google Mails Archived To Labels?

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

Android :: Way On Google Navigation To Get View Down To Street Level

Aug 2, 2010

Is there a way on Google Navigation you can get the view down to street level - like the kind you get on a Tom Tom? You know, the arrow very close to the screen & it shows you turn by turn?

View 1 Replies View Related

Android :: Determine Google Street View Availability

Jul 19, 2009

I have an application that is loading the street view application at a given latitude and longitude. I was wondering if anyone knows a way of determining if a streetview is available at a specific location, so that instead of loading the streetview and trying to download a view somewhere where it is unavailable, ultimately throwing an error, I can display a message instead. The maps application can do it but I can't seem to find a way using the android api, maps api or any of the intent uri's.

View 5 Replies View Related

Android :: Find Map By Providing Country , City And Street?

Feb 1, 2010

In my application findlocation options is there.can u please help me how to find out the corresponding map by providing the country,city,street or pincode.

View 1 Replies View Related

Android :: Get Street Name From Address / Location Object In Droid?

Nov 23, 2010

I'm trying to get the street name of my current location but I can't seem to get it.

I use this method to retrieve the Address. code...

And then I can do things like. address.getLocality() and address.getPostalCode()

But what I want is the street name. Like in "Potterstreet 12". When I print the AddressLine(0) and AddressLine(1) I only get the postalcode, city and country.

How can I retrieve the street name of the position I'm currently at?

View 1 Replies View Related

Android :: Multiple Exchange Accounts With One Inbox And Email With Different Labels

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

Android :: How To Install Folder Organizer / Icon Labels On Phone?

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

Android :: How To Create ListView Disabled Item Labels For Sections?

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

Android :: Google Maps Street View Now Available For UK - Navigation Soon To Follow

Mar 11, 2010

It would seem that they've just rolled out their new Street View for practically the whole of the UK. So my question is: How long do you think it'll be until they release Google Navigation for the UK??

View 5 Replies View Related

Android :: Retrieving Street Info As In Google Maps Application

Mar 31, 2009

I am developing a simple maps application that displays map in street mode. I want to display street name and a snapshot when a particular street is selected. Is it possible to get the street snapshot as is displayed by the native maps application using android APIs.

Also on native maps app when we select the street a 3D view of the street is shown. How can I add this 3D street view to my app.

View 3 Replies View Related

Android :: How Do I Make My Image View Fixed Size Regardless Of Size Of Bitmap

Sep 23, 2010

So I'm loading images from a web service, but the size of the images are sometimes smaller or bigger than other images and the visualization looks silly when I put them in a ListView in android. I'd like to fix the size of my ImageView so that it only shows a portion of the image if it's larger than a preset amount. I've tried everything I can think of setting the setMaxWidth/setMaxHeight, setting the scale type to centerCrop, using ClipableDrawable wrapping my BitmapDrawable, setting using Drawable.setBounds(). I've tried setting in the XML and programmatically, but neither worked. I'm very surprised setting max width/height didn't do anything. Below is the XML I'm using ImageView definition in my layout file

View 1 Replies View Related

Android :: About Size Of Resource Assets Files & Final Apk Size

Oct 2, 2009

I am currently developing a dictionary application with voice database. I would like to know about the current Android limitation on the file size. I am using a self-provided sqlite database ( > 50mb ) . I tested that once the built .apk size exceeds ~30mb the app will not be installed onto the simulator (INSTALL_FAILED_ INSUFFICIENT _STORAGE). Could anyone confirm me that if up until now there is no way to embed such large size files in a single apk ( Aimed to sell at Google Market without requiring user to download datafile afterwards). Also, is there a limitation of 1,048,576 bytes for a single file in the assets folder ?

View 3 Replies View Related

Android :: Size Of Image Is Larger Than Or Smaller Than Specified Display Size

Jan 22, 2009

if size of image is larger than or smaller than specified display size (on screen), then it is automatically, compressed and stretched resp by android run time or require to handle by explicitly.

View 2 Replies View Related







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