Questions tagged [mapactivity]

An Android base class with code to manage the boring necessities of any activity that displays a MapView.

192 questions
4
votes
2 answers

android_maps_conflict_avoidance.com.google.googlenav.map.BaseTileRequest.readResponseData

I have a app with two MapActivity, each one have its MapView, with the same API key. It work OK in Android 3.x and 4.x devices, but error in 2.3.x when switch activity. Can anybody help? Here is the error: 08-26 21:00:03.160: W/System.err(1858):…
Chow Thomas
  • 41
  • 1
  • 4
4
votes
0 answers

partially missing tiles in Android MapView if you rotate - log shows IOException, EOFException in DataInputStream.readFully

First off, my issue is unlike the various API-key related MapView tile issues, and it also does not match this question or that one, albeit it does have similarities. Sometimes I encounter that a couple of tiles fail to load, leaving empty grey…
user1324237
  • 273
  • 1
  • 2
  • 7
3
votes
1 answer

Multiple activity on screen of Android?

So the problem is I need to create a screen where I have a map and a list under it , but to have a map I have a : public class MyMapActivity extends MapActivity{} to have a list i have : class MyListActivity extends ListActivity{} since there is…
Iszlai Lehel
  • 233
  • 3
  • 11
3
votes
0 answers

Android MapActivity onLongPress / zooming mix up

I have a class extending MapActivity which has an overlay attached to it extending ItemizedOverlay. Inside the overlay I have a GestureDetector and a OnGestureListener. Now for my problem: I have an action which triggers in the onLongPress of the…
Ryan
  • 3,579
  • 9
  • 47
  • 59
3
votes
1 answer

Get Latitude and Longitude from SQLite database for use in Android MapOverlay

If I store the Latitude and Longitude of a bunch of locations in a SQLite Database, how would I retrieve these values and place them each in an OverlayItem class for use in Google's Map code? Database name: database Table name: place Fields in place…
April Smith
  • 1,810
  • 2
  • 28
  • 52
3
votes
0 answers

Using MapActivity for MapView Crashes Application only on MarshMallow (6.0 & 6.0.1)

i am extending my activity with MapActivity, to implement MapView dynamically, which contains the fragment that displays mapView. public abstract class BaseHomeActivity extends MapActivity I have implemented MapView in a fragment as…
hemanth kumar
  • 3,068
  • 10
  • 41
  • 64
3
votes
4 answers

Android::Extending MapActivity => classNotFound Exception

I'd like to make a MapView, but extending the MapActivity throws a classNotFoundException: /AndroidRuntime( 374): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2585) E/AndroidRuntime( 374): at…
George
  • 3,727
  • 9
  • 31
  • 47
3
votes
4 answers

android: MapView does not recognize clicks

I simply want a mapview to recognize a click, in order to call another activity. Until now, i tried the regular "onClick",that always worked for me in regular Views, followed by overriding "onTouchEvent" and last but not least using an…
Ben
  • 33
  • 1
  • 3
3
votes
3 answers

Google Map not appearing in my MapActivity

I have created a release keystore using the Eclipse IDE. I signed it using keytool and registered on Google Maps. I plugged in the key but my map doesn't show up. Maps show up properly when I use the key associated with my debug keystore. How can I…
Sheehan Alam
  • 60,111
  • 124
  • 355
  • 556
3
votes
2 answers

Android Google Mapview Activity not opening in Android Studio

I am new to Android and am trying to display a Google Map on an Android Phone. I created the API Key that should work for any Android App ( I did not give any specific SHA for my app). I am guessing that should not matter. Using the Google Android…
Anand
  • 476
  • 6
  • 10
3
votes
1 answer

Android studio cannot resolve mapActivity

I am trying to input source code from codly.io which enables me to convert PSD designs into java source. However, once imported and after fixing issues with appcompact and google play service, I get an error saying it cannot resolve MapActivity. or…
3
votes
0 answers

Mylocation not works in Galaxy tab p1300

This is my map activity class .In this application mylocation works perfectly on Google nexus phone but not works in galaxy tab P3100 .I checked the wifi connection before running the application.And I enabled 1.Use gps satellites,2.Location and…
TamiL
  • 2,706
  • 4
  • 24
  • 44
3
votes
1 answer

Android MapActivity & ItemizedOverlay change current location onTouchEvent

I have an app with one activity that displays map and another class that used to place marker or any overlay items on Map. It works great BUT for now when the user touch the map it shows a message with the new location (This code implemented on the…
Dave Martin
  • 1,387
  • 2
  • 10
  • 8
3
votes
1 answer

setContentView taking too much time

I have activity with MapView, TextView, 3 ImageButton and 1 simple Button. First call setContentView for this activity takes too much time (near 10 seconds). Here is my view code:
Bersh
  • 2,789
  • 3
  • 33
  • 47
3
votes
3 answers

Eclipse can't find file for com.google.android.maps.MapActivity

After hours of configuring and searching through code, I have shaved off a few hundred errors and are left with these two: "The project was not built since its build path is incomplete. Cannot find the class file for…
1
2
3
12 13