有没有办法自定义图像或至少下图左上角“完成”按钮的颜色?
顺便说一句,我正在使用 ABS 来处理我的操作栏。
有没有办法自定义图像或至少下图左上角“完成”按钮的颜色?
顺便说一句,我正在使用 ABS 来处理我的操作栏。
如果您查看attrs.xml
inActionBarSherlock
的源代码,您将看到以下属性:
<!-- =================== -->
<!-- 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
的主题中使用您想要添加的图像。