我在平板电脑项目上使用 Android 的 Holo 主题时遇到了这个问题。但是,我在屏幕上有一个白色背景的片段。我EditText在这个片段上添加了一个组件。我试图通过设置 Holo.Light 主题资源的背景来覆盖主题。但是,我的文本光标(克拉)保持白色,因此在屏幕上不可见(我可以在 edittext 字段中隐约发现它......)。
EditText
有谁知道如何让 EditText 使用较暗的光标颜色?我尝试将 EditText 的样式设置为"@android:style/Widget.Holo.Light.EditText"没有积极的结果。
"@android:style/Widget.Holo.Light.EditText"
将android:textCursorDrawable属性设置为@null应该会导致使用android:textColor光标颜色。
android:textCursorDrawable
@null
android:textColor
属性“textCursorDrawable”在 API 级别 12 及更高级别中可用