0
public void onClick(View arg0) {
            Intent i = new Intent(getApplicationContext(),
                    PlacesMapActivity.class,AddItemizedOverlay.class);
            // Sending user current geo location
            i.putExtra("user_latitude", Double.toString(gps.getLatitude()));
            i.putExtra("user_longitude", Double.toString(gps.getLongitude()));

            // passing near places to map activity
            i.putExtra("near_places", nearPlaces);
            // staring activity
            startActivity(i);
        }

PlacesMapActivity.class と AddItemizedOverlay.class にインテントを送信したいのですが、どうすればよいですか?

ありがとう。

4

1 に答える 1

0

2つの個別のインテントを作成し、それらを送信します。

于 2013-02-07T13:19:47.983 に答える