Reputation: 113
I want to extend FragmentActivity but the error is "FragmentActivity cannot be resolved to a type" How can I resolve?
public class Info_page extends FragmentActivity {
Upvotes: 0
Views: 1208
Reputation: 1670
To add v4 support library, follow steps:
Upvotes: 3
Reputation: 516
Whenever you get this error : cannot be resolved as type you probably didn't import the missing class.
try to add import android.support.v4.app.FragmentActivity;
And try to google before asking for help here... Or to search the site for a similar question.
Upvotes: 0