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?

1

There are 1 answers

1
Ellie Zou On BEST ANSWER

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.