Reputation: 435
I have a novice question. How can I open an ActionBarActivity that is a FragmentActivity from Fragment. I have tryed like this but FragmentActivity is not an activity so not works. Thanks!
Intent intent = new Intent(getActivity(), FichaFragment.class);
startActivity(intent);
Upvotes: 0
Views: 404