问题
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.
回答1:
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.
来源:https://stackoverflow.com/questions/13757730/start-fragmentactivity-from-activity