2015-11-27 30 views
0

我真的不知道是什么视觉元素被称为,我叫他们文本选择模式指标。一些截图,取自Chrome和Opera在同一个Android设备上。如何更改Android文本选择模式主题?

首先是文本选择模式指示灯当前主题(从Chrome中,同我的应用程序): Current text selection mode indicators

和期望的主题(歌剧):

Desired text selection mode indicators

一可以看到,在期望的主题范围内,它们足够大以至于不会对没有使用手写笔的人无用。

任何关键字,我可以用来研究这个我自己是非常欢迎! :)

+0

检查此问题http://stackoverflow.com/questions/28277676/how-to-change-the-text-selection-toolbar-color-which-comes-when-we-copy-a-文本 – RAP

回答

3
it is called text cursor drawable 
you can change it easily using a drawable 

<EditText 
     android:id="@+id/rt1" 
     android:textCursorDrawable="@drawable/cursor_tuy" 
     . 
     . 
/> 
相关问题