I want to extend my class with 2 other classes Fragment and Activity. I tried this:
public class Frist extends Fragment , Activity
{
.....
.....
}
But it's not working. How can I fix it?
I want to extend my class with 2 other classes Fragment and Activity. I tried this:
public class Frist extends Fragment , Activity
{
.....
.....
}
But it's not working. How can I fix it?
You can't extend multiple classes. Why you can't extend fragment in another class?
Java does not support multiple inheritance
Fragment and activity both are completely different thing.
If your want to make activity having fragment over it then in android studio create project with Activity with Fragment instead of with Blank activity
Then Automatically android studio will provide with some code having fragment and classes and xml for it.