[android-beginners] Re: Got the MapView loading, but the map is blank?

2008-09-21 Thread Bourke Floyd
I figured out the issue. I was overriding most of the basic functions @Override protected void onStart() { super.onStart(); } @Override protected void onRestart(){ super.onRestart(); } @Override protected void onResume(){ super.onRestart(); } @Override protected void o

[android-beginners] Re: Got the MapView loading, but the map is blank?

2008-09-21 Thread Bourke Floyd
Oh nm, typo=/ @Override protected void onResume(){ super.onRestart(); } should be @Override protected void onResume(){ super.onResume(); } C.H. Bourke Floyd IV 2314 RIVER PARK CIR APT# 2114 Orlando, FL 32817 C: 321-527-9272 2008/9/21 Bourke Floyd <[EMAIL PROTECTED]> > I figured

[android-beginners] Re: Got the MapView loading, but the map is blank?

2008-09-20 Thread 김병주
Hy. I've been trying to sort it out.. But, I couldn't!! = ( do you mind if u give me a source code I mean whole Project files --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this

[android-beginners] Re: Got the MapView loading, but the map is blank?

2008-09-20 Thread 김병주
I've got a sloution! Here is a code!!! package com.android.app.testmapactivity; import android.os.Bundle; import android.view.Window; import com.google.android.maps.GeoPoint; import com.google.android.maps.MapActivity; import com.google.android.maps.MapView; public class TestMapActivity ext

[android-beginners] Re: Got the MapView loading, but the map is blank?

2008-09-20 Thread Bourke Floyd
I also had that one already. So that doesn't seem to be the problem=) C.H. Bourke Floyd IV On Sat, Sep 20, 2008 at 12:57 AM, Megha Joshi <[EMAIL PROTECTED]> wrote: > It seems like you are missing the > tag inside the > tag > in AndroidManifest.xml. > > 2008/9/19 Bourke Floyd IV <[EMAIL PR

[android-beginners] Re: Got the MapView loading, but the map is blank?

2008-09-19 Thread Megha Joshi
It seems like you are missing the tag inside the tag in AndroidManifest.xml. 2008/9/19 Bourke Floyd IV <[EMAIL PROTECTED]> > > public class TestMapActivity extends MapActivity { > >private static MapView mMapView; >private GeoPoint mDefPoint; > >/** Called when the activity is first