1

有没有办法自定义图像或至少下图左上角“完成”按钮的颜色?

上下文操作栏 顺便说一句,我正在使用 ABS 来处理我的操作栏。

4

1 回答 1

1

如果您查看attrs.xmlinActionBarSherlock的源代码,您将看到以下属性:

    <!-- =================== -->
    <!-- Action mode styles  -->
    <!-- =================== -->
    <eat-comment />
    <attr name="actionModeStyle" format="reference" />
    <attr name="actionModeCloseButtonStyle" format="reference" />
    <!-- Background drawable to use for action mode UI -->
    <attr name="actionModeBackground" format="reference" />
    <!-- Background drawable to use for action mode UI in the lower split bar -->
    <attr name="actionModeSplitBackground" format="reference" />
    <!-- Drawable to use for the close action mode button -->
    <attr name="actionModeCloseDrawable" format="reference" />
    <!-- Drawable to use for the Share action button in WebView selection action modes -->
    <attr name="actionModeShareDrawable" format="reference" />

您可以actionModeCloseDrawable在您styles.xml的主题中使用您想要添加的图像。

于 2013-06-24T17:58:35.277 回答