java - Says "android.support.v4.app.FragmentTransaction" required -


i trying change fragment on button click error getting in android studio says; incompatible types. required: android.support.v4.app.fragmenttransaction found: android.app.fragmenttransaction

however using same package i.e. android.support.v4.app.fragmenttransaction.

the code change fragment is;

public void replacefragment(fragment somefragment) {     fragmenttransaction transaction = getfragmentmanager().begintransaction();     transaction.replace(r.id.sgpa, somefragment);     transaction.addtobackstack(null);     transaction.commit(); } 

i hope have provided necessary information.


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -