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?
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.