Search code examples
androidandroid-fragmentsandroid-activityandroid-tabs

Need up to date way to implement activity with tabs connect to fragments? while ActionBar.TabListener is deprecated, TabLayout can't be resolved


I need activity with multiple tabs that connect to fragments. I have found using ActionBar.TabListener, however, it is depreciated in API Level 21. Also, when using TabLayout, Android Studio tells me it can't resolve it!!

Can anyone suggest a more up to date way to do this?


Solution

  • TabLayout can help.

    Before using TabLayout, you need to add compile 'com.android.support:design:22.2.0' to your build.gradle.

    You can read this page for further information.