Android Studio: Actionbar.tablistener Does Not Work With Appcompatactivity?
I am trying to upgrade some code from FragmentActivity to AppCompatActivity and ActionBar to android.support.v7.app.ActionBar due to deprecation. I've spent a few hours trying to f
Solution 1:
Like i said, it is deprecated.
See:http://developer.android.com/intl/en/reference/android/support/v7/app/ActionBar.TabListener.html
This interface is deprecated. Action bar navigation modes are deprecated and not supported by inline toolbar action bars. Consider using other common navigation patterns instead.
And about your problem:
Action bar tabs can be replaced by:
TabLayout
from theAndroid Design Support Library
, with or without aViewPager
; ora
ViewPager
and your favorite other tab solution for it, whether that bePagerTabStrip
or any number of third-party tab implementations; or
Check this link:ActionBarActivity and ActionBar.TabListener is deprecated inside Android Tab Fragment ( Eclipse ApI 22 )
Post a Comment for "Android Studio: Actionbar.tablistener Does Not Work With Appcompatactivity?"