gpt4 book ai didi

android - 如何更改 EditText 选择句柄/ anchor 的颜色/外观?

转载 作者:IT老高 更新时间:2023-10-28 23:17:12 25 4
gpt4 key购买 nike

所以我用 Holo Colors Generator 更改了 Holo 主题的样式。和 Action Bar Style Generator我自己的颜色。但是当我在编辑文本中选择文本时,所选位置的“标记”仍然是蓝色的。怎么改?

Left Middle Right

最佳答案

这里最糟糕的部分是找到该项目的“名称”以及如何在主题中调用它。所以我查看了android SDK文件夹中的每个drawable,最后找到了名为“text_select_handle_middle”、“text_select_handle_left”和“text_select_handle_right”的drawable。

所以解决方案很简单:将这些具有自定义设计/颜​​色的可绘制对象添加到您的可绘制文件夹中,并将它们添加到您的主题样式定义中,例如:

<style name="MyCustomTheme" parent="@style/MyNotSoCustomTheme">
<item name="android:textSelectHandle">@drawable/text_select_handle_middle</item>
<item name="android:textSelectHandleLeft">@drawable/text_select_handle_left</item>
<item name="android:textSelectHandleRight">@drawable/text_select_handle_right</item>
</style>

关于android - 如何更改 EditText 选择句柄/ anchor 的颜色/外观?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15133926/

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