设置的EditText光标颜色光标、颜色、EditText

由网友(爺独自霸占你的美)分享简介:我有这个问题,我现在用的是Android的全息主题在平板电脑上的项目。不过,我在屏幕上的片段有一个白色背景。我这个片段上加入的EditText 部分。我试着通过设置Holo.Light主题资源的背景覆盖主题。然而,我的文字光标(克拉)仍然是白色的,因此,不可见的屏幕上(我可以在现场的EditText依稀察觉吧..)。...

我有这个问题,我现在用的是Android的全息主题在平板电脑上的项目。不过,我在屏幕上的片段有一个白色背景。我这个片段上加入的EditText 部分。我试着通过设置Holo.Light主题资源的背景覆盖主题。然而,我的文字光标(克拉)仍然是白色的,因此,不可见的屏幕上(我可以在现场的EditText依稀察觉吧..)。

I am having this issue where I am using the Android's Holo theme on a tablet project. However, I have a fragment on screen which has a white background. I am adding an EditText component on this fragment. I've tried to override the theme by setting the background of the Holo.Light theme resources. However, my text cursor (carat) remains white and hence, invisible on screen (I can spot it faintly in the edittext field..).

有谁知道我能得到的EditText使用较深的光标颜色?我试过的EditText的样式设置为@安卓风格/ Widget.Holo.Light.EditText没有阳性结果

Does anyone know how I can get EditText to use a darker cursor color? I've tried setting the style of the EditText to "@android:style/Widget.Holo.Light.EditText" with no positive result.

推荐答案

设置安卓textCursorDrawable 属性 @null 应导致使用的android:文字颜色作为光标颜色

Setting the android:textCursorDrawable attribute to @null should result in the use of android:textColor as the cursor color.

属性textCursorDrawable是API 12级及以上

Attribute "textCursorDrawable" is available in API level 12 and higher

阅读全文

相关推荐

最新文章