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.
From your first Activity call:
Note: Make sure to register your
MyFragmentActivityin yourAndroidManifest.xml.Edit: This training article on Starting Another Activity should be helpful to you.