Re: [android-developers] Problems with start a Map Activity from other Activity

2012-10-16 Thread Asheesh Arya
have you checked permission in your android manifest file

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Problems with start a Map Activity from other Activity

2012-10-16 Thread İLKER SARAC
I also have the similar problem.

I added a simple button to the hello world screen. This button need to 
start the activity described here 
(https://developers.google.com/maps/documentation/android/hello-mapview)

When I click that single button, instead of showing a map my application 
gives Force Close.





On Tuesday, April 27, 2010 8:17:05 PM UTC+3, TreKing wrote:
>
> On Thu, Apr 8, 2010 at 4:08 PM, Carlos Moreira 
> > wrote:
>
>> I have problems and didn't work.
>
>
> What are the problems and how doesn't it work?
>
> On Mon, Apr 26, 2010 at 3:00 AM, Munki83 
> > wrote:
>
>> My mapactivity works fine when used standalone but can't be launched from 
>> a normal activity
>>
>
> Why not? What's the problem you are seeing?
>
> You people really need to provide more information about what SPECIFIC 
> problem you are having or you are never going to get a good response.
>
>
> -
> TreKing - Chicago transit tracking app for Android-powered devices
> http://sites.google.com/site/rezmobileapps/treking
>  
> -- 
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to 
> android-d...@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com 
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Problems with start a Map Activity from other Activity

2010-04-27 Thread TreKing
On Thu, Apr 8, 2010 at 4:08 PM, Carlos Moreira  wrote:

> I have problems and didn't work.


What are the problems and how doesn't it work?

On Mon, Apr 26, 2010 at 3:00 AM, Munki83  wrote:

> My mapactivity works fine when used standalone but can't be launched from a
> normal activity
>

Why not? What's the problem you are seeing?

You people really need to provide more information about what SPECIFIC
problem you are having or you are never going to get a good response.

-
TreKing - Chicago transit tracking app for Android-powered devices
http://sites.google.com/site/rezmobileapps/treking

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Problems with start a Map Activity from other Activity

2010-04-13 Thread Carlos Moreira
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 extends MapActivity {

@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);


-





















-

Do you know any way to call the MapActivity from 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 android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe, reply using "remove me" as the subject.