Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When clicking a button in my application, I want to start an activity from another package.

This is my intent:

  final Intent myIntent = new Intent(getApplicationContext(), com.facebook.android.Places.class)

and this is my manifest:

<activity android:name=".com.facebook.android.Places"
            > </activity>

But i am getting unable to find explicit activity com.mypackage\com.facebook.android.Places.

Is it impissible to start activity from another package?

share|improve this question

2 Answers

up vote 2 down vote accepted

Don't start an Activity from another library-project:

Create your own subclass of it:

public class MyPlaces extends com.facebook.android.Places {

@Override
   public void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      ...
   }
}

Now declare your new Activity in your Manifest:

<activity android:name=".MyPlaces"> </activity>
share|improve this answer
I will only create a subclass and copy the same code from places in it, as I dont want is to do anything different? – ghostrider Apr 19 '12 at 22:28
ok... I edited my comment... I hope I could help you :) – kyp Apr 19 '12 at 22:28
Do you want to use a library project or start an activity of another app? – kyp Apr 19 '12 at 22:29
library project. – ghostrider Apr 19 '12 at 22:32
So that's my final answer :D – kyp Apr 19 '12 at 22:35
<activity android:name=".com.facebook.android.Places"> </activity> 

Is the Places activity inside the package com.facebook.android? or is it in com.mypackage.com.facebook.android?

If the Places class is in com.facebook.android, change the manifest entry to

<activity android:name="com.facebook.android.Places"> </activity>

You dont have to start the name with "."

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.