ActionBarActivity and ActionBar.TabListener is deprecated inside Android Tab Fragment ( Eclipse ApI 22 )

前端 未结 1 1985
庸人自扰
庸人自扰 2021-01-27 12:53

I am implementing the ActionBar.TabListener in My Tab Fragment .

I updated the API 22, After updating it showing ActionBar.TabListener and

相关标签:
1条回答
  • 2021-01-27 13:28

    ActionBarActivity was replaced by AppCompatActivity.

    Action bar tabs can be replaced by:

    • TabLayout from the Android Design Support Library, with or without a ViewPager; or

    • a ViewPager and your favorite other tab solution for it, whether that be PagerTabStrip or any number of third-party tab implementations; or

    • FragmentTabHost

    0 讨论(0)
提交回复
热议问题