1
A
回答
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
與您要添加的圖像。
相關問題
- 1. 上下文操作欄Android中「完成」按鈕的文本更改
- 2. 完成上傳文件,然後執行按鈕的jsf:操作
- 3. UITextView完成按鈕操作 - 返回鍵
- 4. 下拉菜單上的圖像按鈕上的操作欄
- 5. 迴應操作欄的向上按鈕
- 6. 在操作欄上分享按鈕?
- 7. 操作欄中的向上按鈕
- 8. 操作按鈕轉到操作欄
- 9. GridView按鈕操作欄
- 10. 操作欄按鈕背景
- 11. UIToolBar上的完成按鈕無法操作 - iOS
- 12. 虛擬鍵盤上「完成」按鈕的更改操作Android
- 13. 操作按鈕不顯示在操作欄上?
- 14. 具有上下文操作欄的ListView
- 15. 上下文操作欄樣式
- 16. 嵌套上下文操作欄
- 17. 透明的Android上下文操作欄
- 18. Android上下文操作欄樣式
- 19. 上下文片段中的操作欄
- 20. 隱藏操作欄上的Home按鈕Sherlock操作欄擴展導航活動
- 21. 按下時更改操作欄按鈕的背景顏色
- 22. 完成按鈕不工作
- 23. 將按鈕添加到操作欄會導致R無法完成
- 24. 在軟鍵盤上更改下一個按鈕完成按鈕不起作用
- 25. 禁用上下文操作欄和長按複製/粘貼
- 26. 操作欄主頁按鈕崩潰,而後退按鈕工作
- 27. 在Android中禁用操作欄按鈕
- 28. 安卓操作欄的搜索按鈕
- 29. 操作欄設置主頁按鈕
- 30. 從操作欄中刪除按鈕
我在樣式文件中搜索而不是主題。謝謝! – Hrk