2015-11-27 73 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" 
     . 
     . 
/> 
相關問題