我尝试在我的应用中设置标签栏的背景图片,就像在此示例中一样,
Android Design in Action: Transit Apps in the minute 27:16
我的代码是:
<!-- Base application theme. -->
<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">
<item name="android:actionBarTabBarStyle">@style/Divider</item>
<!-- Customize your theme here. -->
</style>
<style name="Divider" parent="@android:style/Widget.Holo.ActionBar.TabBar">
<item name="android:background">@drawable/ic_launcher</item>
</style>
但照片已拉长
我如何才能得到同样的东西?
此致 racso