user3383415
user3383415

Reputation: 435

Open ActionBarActivity from fragment

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

Answers (1)

José Barbosa
José Barbosa

Reputation: 903

Try with:

getActivity().startActivity(intent);

Upvotes: 1

Related Questions