package com.androidnik.tourguide;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class MustVisit extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_category);
getSupportFragmentManager().beginTransaction().replace(R.id.container, new MustVisitFragment()).commit();
}
im getting this error : Error:(12, 80) error: incompatible types: MustVisitFragment cannot be converted to Fragment i have extended that fragment class within MyVisitFragment class and also have a empty constructor still im facing this problem