Skip to content Skip to sidebar Skip to footer

Problems With With Fragments And Viewpager

have view pager with 3section . want inside this pagers put fragment . and i use this example : http://www.truiton.com/2015/06/android-tabs-example-fragments-viewpager/ Main Activ

Solution 1:

You have to import the fragments from support.v4 library, you have to replace the imports for android.support.v4 like this.

import android.app.Fragment; > import android.support.v4.app.Fragment; import android.app.FragmentManager; >importandroid.support.v4.app.FragmentManager; import android.app.FragmentStatePagerAdapter; > import android.support.v4.app.FragmentStatePagerAdapter;

Post a Comment for "Problems With With Fragments And Viewpager"