Android :: MapView Has Bad Resolution Comparing To Generic Maps / Solution To This?
Sep 7, 2010
I just received a HTC Desire to test on. I noticed, that a mapView residuing in a frame smaller than a whole screen is not as sharp as a generic maps application. Is there any solution to this?
View 2 Replies
Jun 9, 2010
Referring to the code example of mine
http://stackoverflow.com/questions/2997703/android-remote-image-getting-problem
how can i accommodate bigger resolution images in android.
when i try to display bigger resolution image from Internet it give me null bitmap.
any one guide me whats the solution?
View 1 Replies
View Related
Aug 31, 2010
The Google map is too older for me, so I create my map in Google map and add some lines and marks. Is there a way to show my maps in MapView?
View 2 Replies
View Related
May 8, 2012
I am working to develop a customized business concept to call a taxi. Where customers request a Taxi on smart phone app. Taxi drivers will have an Android GPS pre-loaded with maps to work off line. The Taxi driver is guided to the customer using voice navigation (for safety).
Questions:
* Where to find the latest maps to be used for Andriod GPS off-line.
* Which software to use for voice navigation off-line.
* Which software to use for off-line navigation directions from point A to point B.
View 2 Replies
View Related
Sep 12, 2010
If you compare how the map looks in MapView and how it looks in Google Maps, you'll notice that in Google Maps the map is "bigger". The texts are bigger, roads wider etc. Can I achieve this in my MapView?
View 1 Replies
View Related
Jul 20, 2010
I have a mapview where I want to track the user's current location. GPS as well as 'use wireless networks' is activated in my phone settings.
Nevertheless, since I'm indoor I don't get a GPS fix, therefore the location is determined via network; wifi spot is available.
I have the Google Maps app running as well as my application running.
Strangely, the current location differes between Google Maps and my application, where the Google Maps is very accurate while in my app the location is somehow off a few 100 meters.
In my application I basically do the following (for debugging purposes now):
1) initially place one marker on the map: geopoint retrieved via locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
2) initially place another marker on the map: geopoint retrieved via locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
This will put the last known locations of both providers onto the map (eventually last known from outside my app).
3) then for the regular updates (since I don't get a GPS fix anyway indoor here), I do:
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 0, 0, baseLocationListener);
You can see for the frequency and distance I pass the 0 param in both cases.
In the app manifest, the following permissions are granted:
android.permission.ACCESS_COARSE_LOCATION
android.permission.ACCESS_FINE_LOCATION
android.permission.ACCESS_MOCK_LOCATION
Actually my baseLocationListener does get called, which I see in the log, but the updated location is somehow the same as the last known current position (of LocationManager.NETWORK_PROVIDER), same lat/lng.
I thought maybe I overlooked something or missed a parameter or setting, or my code has a bug. Therefore I installed some other (3 in total) LBS apps from the Android market that also show the current user's location. The current locations displayed in those apps are equals to the one in my application - and they're all some 100 meters off - but at least all the same.
See the screenshot here:
http://img33.imageshack.us/img33/8679/mapproblem.png
Now I am wondering:
1) as I understand, getLastKnowLocation is system-wide and not app-wide, why are there differences between the location in Google maps and all the other apps?
2) does Google Maps not update the lastKnownLocation of a provider?
3) does Google Maps use a different custom location provider (i.e. due to licensing reasons) other than GPS_PROVIDER or NETWORK_PROVIDER as they are in the SDK?
4) how do achieve the same accurate result with the NETWORK_PROVIDER like Google Maps does?
View 2 Replies
View Related
Jun 4, 2009
I'm following this tutorial here: http://developer.android.com/guide/tutorials/views/hello-mapview.html
and am on point 11
Here's the res/layout/main.xml:
CODE:........
Here's the code:
CODE:........................
View 2 Replies
View Related
Sep 29, 2010
I'm trying to launch the Maps application from my own activity and throws me an exception.
This is the code that I launch...
And this is the LogCat...
have you declared this activity in your AndroidManifest.xml?
This code executes OK in the stock Android but Sense seems to have something that revokes the launch of the activity. I launch some other apps like gMail without errors, it's only Maps application who gives that error. Do you know any solution to this error?
View 2 Replies
View Related
Jul 20, 2010
It seems that the problem is in the data quality of the different map provider that are used for Google Maps and MapView in SDK, which differ.
The map tiles coordinates don't seem to be very accurate, just like in the public google maps web api / tiles.
See this screenshot for an example, where I pinned the same geo point. http://img339.imageshack.us/i/gmaps2.png/
The map using the public map api is off a few hundred meters. Seems that we just have to live with it.
CODE:................
View 2 Replies
View Related
Aug 1, 2010
I wonder, how can I draw a nice flight route between 2 points on a google map's MapView? look at this: http://maps.forum.nu/gm_flight_path.html
View 6 Replies
View Related
Aug 4, 2009
While running i am getting this error in my logcat and my app exiting automatically...
CODE:....................
View 3 Replies
View Related
Mar 29, 2010
i am new to android development. I got an error when write the code "import com.google.android.maps.MapView; in eclipse. The error is "The import com.google can not be resolved."
View 2 Replies
View Related
Nov 13, 2010
import android.app.Activity;
import android.os.Bundle;
import android.widget.LinearLayout;
import android.view.ViewGroup;
import android.widget.*;
import com.google.android.maps.MapView;
public class MapView extends MapActivity{
/** Called when the activity is first created. */
LinearLayout linearLayout;
MapView mapView;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.map);
mapView = (MapView) findViewById(R.id.mapview);
mapView.setBuiltInZoomControls(true);
MapController mapController = mapView.getController();
}
}
View 2 Replies
View Related
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
Jun 29, 2010
I have a strange error that I can't understand. I have this code: if (VersionsKoll == Ver) { }
View 5 Replies
View Related
Aug 18, 2010
I wanted to compare the current system date to a fix date, but get the wrong result. By trying to find out what's wrong, The small differences for deltaOlder and deltaSystems are due to the execution time, that's no problem.But the results of the comparison of today (18th of August) and the first set date (1st of August) is wrong IMO. isAfter1 should be true and isBefore1 should be false;
The comparison with the second set date (1st of October) is ok.Any suggenstion what I'm doing wrong in the simple thing to compare two dates?
View 1 Replies
View Related
Jun 26, 2010
I have a program that should work on Android 1.5, but when it's run on newer devices with higher resolution screens, it should support the full resolution and not emulate a lower resolution screen. As far as I can tell from the documentation, this should be simple.
I just specify
code:.........
The problem is that if I tell Eclipse to compile for 1.5, it refuses to accept this. It reports an error (targetSdkVersion is an unknown tag) and refuses to compile or run. If I tell it to compile for 1.6 it works fine, of course. But if I then try to install on a 1.5 AVD, the program immediately crashes with a java.lang.VerifyError. I'm clearly missing something simple. How do I get it to compile an apk that works under 1.5, but still includes the targetSdkVersion tag?
View 3 Replies
View Related
Nov 11, 2009
Whats really the difference between say this one. Amzer Super Clear Screen Protector with Cleaning Cloth For Motorola - Motorola Droid A855 - Screen Protectors - Fommy.com. and the zagg or any others.. what do you think is the best im looking for mainly the screen to be protected.want it dust free,free of bubble and fingerprints and also to feel natural when using the screen.
View 6 Replies
View Related
Jan 10, 2014
I'm searching for an app for merging and /or comparing the content of any kind of files as WinMerge do for Windows. Any tool for our Android Devices?
View 1 Replies
View Related
Apr 8, 2013
How do I convert phone resolution Bootanimation to tablet resolution?
I have 4 boot animations that I want to convert to work on my Nexus 10 full screen.
Also, how to be able to edit [URL] to show 10 instead of 4 or completly remove the number so it works nicely on both my Nexus 4 and Nexus 10.
View 1 Replies
View Related
Mar 22, 2010
I've seen plenty of discussion here about different browser apps, but I have yet to see one listing the pros and cons of the different most popular browsers available for android. The main browsers I've been able to identify are the following: If there are any others worth mentioning, please add them to the list. I would love to hear your input regarding the pros and cons of each one.
View 19 Replies
View Related
Nov 30, 2009
Is there a generic database application out there? I haven't found any in the market or mentioned in these forums.
View 1 Replies
View Related
Sep 26, 2010
I wonder if there is generic replacement for htc mms on 2.2 android ? Every time i try to send mms I get unable to resolve send address. I have android plan and I installed apn but I cant get it to work. Does anyone knows how to get evo to send mms on cricket. Also is there generic virtual voice mail app?
View 2 Replies
View Related
Jul 18, 2010
When I try to compile to following code, I get two errors:
Description Resource Path Location Type
Syntax error on token "void", invalid Expression AsyncTask.java /AsyncTask Project/src/org/me/asynctask line 19 Java Problem
Description Resource Path Location Type
The type AsyncTask is not generic; it cannot be parameterized with arguments AsyncTask.java /AsyncTask Project/src/org/me/asynctask line 25 Java Problem
CODE:............
Obviously AsyncTask IS a generic (http://developer.android.com/reference/android/os/AsyncTask.html#execute so why do i get those errors?
View 2 Replies
View Related
Jul 29, 2009
Generic android.widget.Adapter iface has getCount() method which tells e.g. ListView how many items adapter has. what if my Adapter's data source cannot tell me it's size and has only method Object getItem(int position) returning e.g. null when there is no item for that position? in other words i can get some object at given position but don't know maximum value for position so, is it possible to create Adapter not knowing apriori its size?
View 3 Replies
View Related
May 25, 2010
Does anyone know where I can find a generic image of Android 2.1? I have a Commtiva Z71 a.k.a Cincinnati Bell Blaze (which runs on Qualcomm MSM7227, 600 MHz) and no one has released instructions on how to root it or do really anything fun with it yet.
View 1 Replies
View Related
Nov 4, 2010
Is there a way to get/set a generic device name ? My app will offer the user an option to use the same app on several devices and they will be aware of each other through server. 1) Is there anything in the APIs to allow me to fetch some kind of friendly device name (cannot be OS/model since user might have the same on both devices) ? 2) AFAICT the only option is to use Bluetooth name but how can I fetch my device name in code?(and it's a nag do explain the user to use bluetooth just to set the name of the device)
View 4 Replies
View Related
Sep 25, 2013
can recommend a Root method that might work for the following phone configuration.My phone is custom built by a Sonim OEM, but factory modified to the Companies own brand.. its comparable to the Sonim A3, at least in outward functionality and durability, being waterproof, etc... but the internal hardware compilation is likely different, but I'm not sure how..
Here is my log from Android System Info.. it says at the bottom, user is root? but I dont have root access.. i ran Root Checker Basic, and it said I dont have a rooted phone.. I also did the terminal test & su was unrecognized and returned $ and not #
Here are the specs:
Android version : 4.2.2
Release Codename : REL
API LEVEL : 17
CPU ABI : armeabi-v7a
Manufacturer : alps
Bootloader : unknown
CPU ABI2 : armeabi
Hardware : mt6572
Radio : unknown
Board : mbk72_wet_jb3
Brand : alps
Device : mbk72_wet_jb3
Display : A8_V1.0
Fingerprint : alps/mbk72_wet_jb3/mbk72_wet_jb3:4.2.2/JDQ39/1378194655:user/test-keys
Host : android
ID : JDQ39
Model : A 8
Product : mbk72_wet_jb3
Tags : test-keys
Type : user
User : root
View 9 Replies
View Related
Apr 21, 2014
I have a pandigital 7 inch tablet since they are out of business and i can't get any updates can i put a generic android operating system on it and how would i do it?
View 4 Replies
View Related
Sep 25, 2010
I use the google code from devloper.android.com I use that application but in the emulator it shows only the crossed lines not the map so is there any settings in emulator for displaying maps
CODE:.....
Android mainfest
CODE:..................
View 4 Replies
View Related