gpt4 book ai didi

java - EditText 插入点与文本颜色相同(@null 不起作用)

转载 作者:行者123 更新时间:2023-12-02 12:13:46 24 4
gpt4 key购买 nike

我想让 EditText 光标颜色与文本相同,但是:

android:textCursorDrawable="@null"

不工作。

我使用主题(样式)中的primeryAccent颜色更改了它,但更喜欢它只采用文本的颜色(所以我不会为每个editText制作很多样式)。我错过了什么吗?

编辑文本:

<EditText
android:id="@+id/search_value"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/transparent"
android:inputType="text"
android:hint="Search People..."
android:layout_toRightOf="@id/arrow_search_indicator"
android:layout_alignTop="@id/search_container"
android:layout_alignEnd="@id/search_container"
android:layout_alignBottom="@id/search_container"
android:layout_marginStart="12dp"
android:textColor="@color/white"
android:textColorHint="@color/search_hint_blue"
android:textCursorDrawable="@null"
android:maxLines="1"
android:imeOptions="actionDone"/>

此处编辑:

图片:

enter image description here

那个粉红色的东西(抱歉,如果我命名错误)

最佳答案

您希望编辑文本光标颜色更改您的颜色。

<EditText  
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textCursorDrawable="@drawable/color_cursor"
/>

然后创建drawalble xml:color_cursor

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<size android:width="3dp" />
<solid android:color="#FFFFFF" />
</shape>

关于java - EditText 插入点与文本颜色相同(@null 不起作用),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46345976/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com