テキスト選択表示アイコンandroid textSelectHandleRight


ここ数日テキスト選択処理を行うにはtextSelectHandleRightプロパティが使用されています
これらの属性の効果textSelectHandleRight textSelectHandleLeft textSelectHandle簡単に言えば、システムテキストの選択時に現れるコピー矢印を見ることができます.左、右、この効果を使用します.
 
androidソースコードを表示するとstylesで定義されていることがわかります.xmlで
 <style name="Widget.TextView">
        <item name="android:textAppearance">?android:attr/textAppearanceSmall</item>
        <item name="android:textSelectHandleLeft">?android:attr/textSelectHandleLeft</item>
        <item name="android:textSelectHandleRight">?android:attr/textSelectHandleRight</item>
        <item name="android:textSelectHandle">?android:attr/textSelectHandle</item>
        <item name="android:textEditPasteWindowLayout">?android:attr/textEditPasteWindowLayout</item>
        <item name="android:textEditNoPasteWindowLayout">?android:attr/textEditNoPasteWindowLayout</item>
        <item name="android:textEditSidePasteWindowLayout">?android:attr/textEditSidePasteWindowLayout</item>
        <item name="android:textEditSideNoPasteWindowLayout">?android:attr/textEditSideNoPasteWindowLayout</item>
        <item name="android:textEditSuggestionItemLayout">?android:attr/textEditSuggestionItemLayout</item>
        <item name="android:textCursorDrawable">?android:attr/textCursorDrawable</item>
    </style>
attr.xmlで
 <!-- Reference to a drawable that will be used to display a text selection
             anchor on the left side of a selection region. -->
        <attr name="textSelectHandleLeft" />
        <!-- Reference to a drawable that will be used to display a text selection
             anchor on the right side of a selection region. -->
        <attr name="textSelectHandleRight" />
        <!-- Reference to a drawable that will be used to display a text selection
             anchor for positioning the cursor within text. -->
        <attr name="textSelectHandle" />
はtheme.xml text部分
  <!-- Text selection handle attributes -->
        <item name="textSelectHandleLeft">@android :drawable/text_select_handle_left</item>
        <item name="textSelectHandleRight">@android :drawable/text_select_handle_right</item>
        <item name="textSelectHandle">@android :drawable/text_select_handle_middle</item>
        <item name="textSelectHandleWindowStyle">@android :style/Widget.Holo.TextSelectHandle</item>
        <item name="textSuggestionsWindowStyle">@android :style/Widget.Holo.TextSuggestionsPopupWindow</item>
        <item name="textCursorDrawable">@android :drawable/text_cursor_holo_dark</item>