我正在尝试使用ViewPager视图在顶部放置5个标签。我需要这5个标签适合屏幕宽度。它没有,所以我能够减小文本大小以使其适合,但随后文本太小。所以现在我试图删除每个标签的一些填充,如下所示:
<style name="CustomActionBarTheme" parent="Theme.AppCompat.Light">
<item name="android:actionBarTabTextStyle">@style/MyActionBarTextTheme</item>
<!-- <item name="android:actionBarStyle">@style/MyActionBarTheme</item> -->
</style>
<style name="MyActionBarTheme" parent="Widget.AppCompat.Light.Base.ActionBar.TabView">
<item name="android:padding">0dp</item>
</style>
<style name="MyActionBarTextTheme" parent="Widget.AppCompat.Light.ActionBar.TabText">
<item name="android:textSize">10sp</item>
</style>
除了没有任何反应。事实上,标签完全消失了。我应该做些什么更具体的事情吗?感谢。