为什么 ActionBar 选项卡在平板设备上显示为 Spinner?

Why ActionBar Tabs show as Spinner on Tablet devices?

我制作了一个使用 TABS 作为导航的应用程序。在手机等任何设备上,一切看起来都很棒,但在平板电脑设备上,我看到的是微调器,而不是标签……为什么?我已经在 AVD 上测试了这个问题,但似乎一切正常。知道该怎么做吗?

I have made an app using TABS as navigation.

根据您的问题标题,我假设 "TABS" 您指的是操作栏选项卡。操作栏选项卡在 Android 5.0 中已被弃用,并且它们始终存在问题。

On any devices like cell phones everything looks great but on tablet devices instead of tabs I see spinner ... why?

因为这就是 Google 想要的,基于他们对 the issue I filed over three years ago 关于此行为的回应。

Any idea what to do?

停止使用操作栏选项卡。使用 ViewPager 和选项卡式指示符(例如 PagerSlidingTabStrip),或使用 FragmentTabHost,或使用 TabHost 和选项卡视图。