Start FragmentActivity from Activity

android, android-fragmentactivity

Solution

From your first Activity call:

  startActivity(new Intent(this, MyFragmentActivity.class));

Note: Make sure to register your `MyFragmentActivity` in your `AndroidManifest.xml`.

Edit: This training article on Starting Another Activity should be helpful to you.

Problem

How can I start a FragmentActivity from an Activity? My MainActivity is a splash screen and I want to star a FragmentActivity next. I need something instead of, for example: ``` startActivity(new Intent("com.example.manager.MyFragmentActivity")); ``` TIA.

Original source