How to add an item to the copy / paste popup menu on the selected android text?

see this screenshot. In the usual case, when the text is selected, the popup menu is open, but has only cut / paste element. I want to know how to add an item to this "web search / share" in this popup menu?

What is this popup menu? I tried to override the context menu or the options menu, but that is not the case. I also tried to expand the TextView and override its context menu, but not use it, only show the context menu of a regular dialog, and this cut / paste menu is disabled.

enter image description here

+4
source share
1 answer

api23 . ACTION_PROCESS_TEXT api23. AndroidManifest.xml.

 <activity
        android:name=".YourActivity">
        <intent-filter>
            <action android:name="android.intent.action.PROCESS_TEXT" />
            <category android:name="android.intent.category.DEFAULT" />
            <data android:mimeType="text/plain" />
        </intent-filter>
</activity>

, .

Example

.

+3

Source: https://habr.com/ru/post/1621485/


All Articles