如何在文本选择弹出菜单中添加项目?

时间:2018-08-01 12:07:15

标签: java android android-intent menu-items

当用户标记某些文本(在EditTextWebView ...内)时,会出现一个浮动文本选择弹出窗口,应用程序可以在其中添加自定义项目。有人可以给我一个例子,如何将一个项目添加到此弹出菜单中,以显示意图并将所选的String转移到我的活动中。

enter image description here

1 个答案:

答案 0 :(得分:0)

此博客教程将向您展示如何:https://medium.com/google-developers/custom-text-selection-actions-with-action-process-text-191f792d2999

基本上,在您的Manifest文件中,将PROCESS_TEXT intent filter添加到将处理从弹出菜单共享的文本的活动中。

<activity
    android:name=".ProcessTextActivity"
    android:label="@string/process_text_action_name">
  <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>

然后,您将像这样在Activity中处理该文本

@Override
protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.process_text_main);
  CharSequence text = getIntent()
      .getCharSequenceExtra(Intent.EXTRA_PROCESS_TEXT);
  // process the text
}