Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
  • Attempts to switch activities between two Android Fragments is failing.
  • This happens in spite of using the Android doco example verbatim:

Android Fragment doco

  • Attempts to add the target Fragment to the AndroidManifest.xml does not compile with the same message that is in the Title of this question.
  • If I hack the same process using only Views and straight Activities the all is well.
  • If I leave the AndroidManifest.xml unchanged then I get a run-time exception with the question:

android.content.ActivityNotFoundException: Unable to find explicit activity class {name.davidwbrown.actionbartabs/name.davidwbrown.actionbartabs.UserDetailsFragment}; have you declared this activity in your AndroidManifest.xml?

share|improve this question

1 Answer

Try defining an xml layout containing the fragment instead of assigning it to the <activity> tag on the manifest. Then use findViewById(R.id.frameId) to find it in code and then attach it to the activity. In the manifest, keep the activity tag something similar to this and it should work:

<activity
        android:name="name.davidwbrown.actionbartabs.UserDetailsFragment"
        android:label="@string/activity_name" >
</activity>
share|improve this answer
Hi Eric, thnx 4 the speedy reply. Unfortunately, AdroidManifest.xml is not happy notwithstanding as follows: <activity android:name="name.davidwbrown.actionbartabs.UserDetailsFragment" android:label="@string/tvFragment"> </activity> and here is the error msg: name.david.actionbartabs.UserDetailsFragment is not assignable to android.app.Activity – banned Sep 14 '12 at 11:37

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.