Has anyone been able to resolve this problem as I'm also experiencing it. My mapactivity works fine when used standalone but can't be launched from a normal activity
On Apr 8, 10:08 pm, Carlos Moreira <[email protected]> wrote: > Hello every one! > > It's my first time mailing for a solution, I hope find the solution > for this... > > Any way, I am developing an aplication. This one is designed to login > a user, then select how find a place, using simple data or using a > map. When I try to set in the event OnClick for select the "Map > way" (using intent): > > startActivity(new Intent(getApplicationContext(), > MapviewController.class)); > > I have problems and didn't work. > > My class and manifest are: > > public class MapviewController extendsMapActivity{ > > @Override > public void onCreate(Bundle savedInstanceState) { > super.onCreate(savedInstanceState); > setContentView(R.layout.view_map); > > //Definición del mapa a usar en la vista > MapView mapView = (MapView) findViewById(R.id.map_view); > mapView.setBuiltInZoomControls(true); > mapView.setSatellite(true); > > ----- > > <application android:label="@string/app_name" android:icon="@drawable/ > sitefinder"> > <activity android:name=".LoginController" > android:label="@string/app_name"> > <intent-filter> > <action android:name="android.intent.action.MAIN" /> > <category > android:name="android.intent.category.LAUNCHER" /> > </intent-filter> > </activity> > <activity android:name=".ElegirARMapsController" > android:label="@string/app_name"> > <intent-filter> > > </intent-filter> > </activity> > <activity android:name=".MapviewController" > android:label="@string/app_name" > android:theme="@android:style/Theme.NoTitleBar"> > <intent-filter> > <action android:name="android.intent.action.VIEW" /> > <category > android:name="android.intent.category.DEFAULT" /> > </intent-filter> > </activity> > </application> > > ------------- > > Do you know any way to call theMapActivityfrom other? > > Thx a lot for read this and trying to help me. > > PD:Sry for my English! > > Carlos J. Moreira Muñoz -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

