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

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -