1

有沒有辦法自定義圖像或至少是下圖左上角的「完成」按鈕的顏色?上下文操作欄:完成按鈕

Contextual Action Bar 順便說一句,我正在使用ABS來處理我的操作欄。

回答

1

如果您在ActionBarSherlock的源代碼看attrs.xml你會看到這些屬性:

<!-- =================== --> 
    <!-- 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" /> 

你可以在你的主題在你的styles.xml使用actionModeCloseDrawable與您要添加的圖像。

+0

我在樣式文件中搜索而不是主題。謝謝! – Hrk