4

我刚刚将 ActionBar 集成到我的 Android 应用程序中(实际上,我最终选择了 ActionBarSherlock 以实现向后兼容性)。

要在活动上显示 ActionBar,您必须使用一组特定的主题:Theme.Holo.* for ActionBar 或 Theme.Sherlock.* for ActionBarSherlock

每当我修改 AndroidManifest.xml 以使现有 Activity 的样式使用上述 ActionBar 主题之一时,我发现 Activity 上每个 Button 的背景图像都会失真。具体来说,图像垂直拉伸的像素比图像实际包含的像素多。只有当我使用 layout_height="fill_parent" 时,我才会期望这种行为,但我不是。此外,其他主题(与 ActionBar 相关的主题除外)似乎不会发生这种情况。

我尝试发布屏幕截图,但我还没有足够高的声誉。我道歉。

这是我的一个按钮声明,它受到主题的不利影响:

<Button
    android:textStyle="bold"
    android:typeface="sans"
    android:layout_height="wrap_content"
    android:id="@+id/btnAddtoBag" android:layout_width="wrap_content"
    android:background="@drawable/add_to_bag_selector">
</Button>

由于它引用了一个选择器,我还将包含选择器的 XML,其中引用了实际的 png 文件:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true"
          android:drawable="@drawable/selected_add_to_bag" /> <!-- pressed -->
    <item android:state_focused="true"
          android:drawable="@drawable/selected_add_to_bag" /> <!-- focussed -->
    <item android:drawable="@drawable/default_add_to_bag" /> <!-- default -->
</selector>

最后,这是我在发生这种情况时应用到我的主题的样式:

<style name="Theme.CustomActionBar" parent="Theme.Sherlock.Light.DarkActionBar.ForceOverflow">
    <item name="actionBarStyle">@style/ActionBar</item>
</style>

<style name="ActionBar" parent="Widget.Sherlock.Light.ActionBar.Solid.Inverse">
    <item name="android:displayOptions">showHome|useLogo</item>
    <item name="displayOptions">showHome|useLogo</item>     
</style>   
4

1 回答 1

7

使用 ImageButton 并设置 android:src="@drawable/add_to_bag_selector" 并且您的图像不应该被拉伸。

您还需要设置 android:backgorund="@android/color/transparent"

于 2012-09-17T20:36:24.367 回答