长按网页视图时的水平菜单充气器 [英] Horizontal menu inflater on long click for web view

查看:20
本文介绍了长按网页视图时的水平菜单充气器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 longClick 上的 webview 选择有问题.我已经实现了在 longClick 上启动的自定义菜单.但默认菜单也在启动.我正在尝试自定义默认菜单,但我不知道如何捕获用户对某个项目的点击.

I am having a problem with the webview selection on longClick. I already had an implementation of a customized menu that launches on longClick. But the default menu is launching as well. I am trying to customize the default menu, but I'm not knowing how to capture the click of the user on an item.

我尝试了以下方法,但是菜单变得垂直并且隐藏了选择,所以我无法选择更多的单词或更改选择.

I have tried the following, but the menu is becoming vertical and hiding the selection, so I cannot select more words or change the selection.

  @Override
public void onCreateContextMenu(ContextMenu menu, View v, ContextMenu.ContextMenuInfo menuInfo)
{
    super.onCreateContextMenu(menu, v, menuInfo);


    MenuInflater inflater = getMenuInflater();

    /*
        public void inflate (int menuRes, Menu menu)
            Inflate a menu hierarchy from the specified XML resource. Throws InflateException if there is an error.

        Parameters
            menuRes : Resource ID for an XML layout resource to load (e.g., R.menu.main_activity)
            menu : The Menu to inflate into. The items and submenus will be added to this Menu.

    */
    inflater.inflate(R.menu.menu, menu);
}

@Override
public boolean onContextItemSelected(MenuItem item){
    // Handle the menu item selection
    switch(item.getItemId()){
        case R.id.dict_menu:
            // Render the page again
            Toast.makeText(mContext,"dict_menu",Toast.LENGTH_SHORT).show();
            return true;
        case R.id.q_menu:
            Toast.makeText(mContext,"q_menu",Toast.LENGTH_SHORT).show();
            return true;
        case R.id.hi_menu:
            Toast.makeText(mContext,"hi_menu",Toast.LENGTH_SHORT).show();
            return true;
        default:
            super.onContextItemSelected(item);
    }
    return false;
} 

使用菜单xml如下.

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal">
     <item android:id="@+id/dict_menu"
    android:title="قاموس" />
     <item android:id="@+id/q_menu"
    android:title="اقتباس" />
     <item android:id="@+id/hi_menu"
    android:title="تظليل" />
</menu> 

因此,而不是得到这个结果:(当我没有实现以下方法时,我得到这个结果:onCreateContextMenu、onContextItemSelected,这使我能够在选择菜单项时进行捕获)

Therefore instead of having this result: (I get this result when I don't implement the following methods: onCreateContextMenu, onContextItemSelected which enable me to capture when an item of the menu is chosen)

我得到以下信息:

当我使用以下代码时收到第一个屏幕截图:

The first screenshot is received when I use the following code:

@Override
public void onActionModeStarted(ActionMode mode) {
    System.out.println("onActionModeStarted");
    if (mActionMode == null)
    {
        mActionMode = mode;
        //mode.setTitle("Dictionary");
        Menu menu = mode.getMenu();
        menu.clear();
        mode.getMenuInflater().inflate(R.menu.menu, menu);//mode.getMenuInflater().inflate(myMenu, menu);
    }
    //System.out.println("onActionModeStarted");
    super.onActionModeStarted(mode);
}

public void onContextualMenuItemClicked(MenuItem item) {
    System.out.println("onContextualMenuItemClicked");
    switch (item.getItemId()) {
        case R.id.dict_menu:
            // do some stuff
            System.out.println("dict_menu");
        Toast.makeText(mContext,"dict_menu",Toast.LENGTH_SHORT).show();
            break;
        case R.id.hi_menu:
            // do some different stuff
            System.out.println("hi_menu");
          Toast.makeText(mContext,"hi_menu",Toast.LENGTH_SHORT).show();
            break;

        case R.id.q_menu:
            // do some different stuff
            System.out.println("q_menu");
           Toast.makeText(mContext,"q_menu",Toast.LENGTH_SHORT).show();
            break;
        default:
            // ...
            super.onContextItemSelected(item);
            break;
    }

    // This will likely always be true, but check it anyway, just in case
    /*if (mActionMode != null) {
        mActionMode.finish();
    }*/
}

@Override
public void onActionModeFinished(ActionMode mode) {
    mActionMode = null;
    super.onActionModeFinished(mode);
    System.out.println("onActionModeFinished");
}

 <?xml version="1.0" encoding="utf-8"?>
 <!---<menu xmlns:android="http://schemas.android.com/apk/res/android"-->
 <menu xmlns:android="http://schemas.android.com/apk/res/android"
     android:orientation="horizontal">

     <item android:id="@+id/dict_menu"
         android:onClick="onContextualMenuItemClicked"
         android:title="قاموس" />

     <item android:id="@+id/q_menu"
         android:onClick="onContextualMenuItemClicked"
         android:title="اقتباس" />

     <item android:id="@+id/hi_menu"
         android:onClick="onContextualMenuItemClicked"
         android:title="تظليل" />

 </menu>

这会导致以下错误:

  android.view.InflateException: Couldn't resolve menu item onClick        handler onContextualMenuItemClicked in class android.app.ContextImpl
  08-10 09:01:21.602 4931-4931/ W/System.err:     at android.view.MenuInflater$InflatedOnMenuItemClickListener.<init>(MenuInflater.java:243)
  08-10 09:01:21.602 4931-4931/ W/System.err:     at android.view.MenuInflater$MenuState.setItem(MenuInflater.java:464)
  08-10 09:01:21.602 4931-4931/ W/System.err:     at android.view.MenuInflater$MenuState.addItem(MenuInflater.java:498)
  08-10 09:01:21.602 4931-4931/ W/System.err:     at android.view.MenuInflater.parseMenu(MenuInflater.java:191)
  08-10 09:01:21.602 4931-4931/ W/System.err:     at android.view.MenuInflater.inflate(MenuInflater.java:112)
  08-10 09:01:21.602 4931-4931/ W/System.err:     at BookReader.onActionModeStarted(BookReader.java:3346)
  08-10 09:01:21.602 4931-4931/ W/System.err:     at com.android.internal.policy.DecorView.startActionMode(DecorView.java:1034)
  08-10 09:01:21.602 4931-4931/ W/System.err:     at com.android.internal.policy.DecorView.startActionModeForChild(DecorView.java:982)
  08-10 09:01:21.602 4931-4931/ W/System.err:     at android.view.ViewGroup.startActionModeForChild(ViewGroup.java:828)
  08-10 09:01:21.602 4931-4931/ W/System.err:     at android.view.ViewGroup.startActionModeForChild(ViewGroup.java:828)
  08-10 09:01:21.602 4931-4931/ W/System.err:     at android.view.ViewGroup.startActionModeForChild(ViewGroup.java:828)
  08-10 09:01:21.603 4931-4931/ W/System.err:     at android.view.ViewGroup.startActionModeForChild(ViewGroup.java:828)
  08-10 09:01:21.603 4931-4931/ W/System.err:     at android.view.View.startActionMode(View.java:6398)
  08-10 09:01:21.603 4931-4931/ W/System.err:     at org.chromium.content.browser.SelectionPopupController.showActionModeOrClearOnFailure(SelectionPopupController.java:45)
  08-10 09:01:21.603 4931-4931/ W/System.err:     at org.chromium.content.browser.ContentViewCore.onSelectionEvent(ContentViewCore.java:579)
  08-10 09:01:21.603 4931-4931/ W/System.err:     at org.chromium.base.SystemMessageHandler.nativeDoRunLoopOnce(Native Method)
  08-10 09:01:21.603 4931-4931/ W/System.err:     at org.chromium.base.SystemMessageHandler.handleMessage(SystemMessageHandler.java:7)
  08-10 09:01:21.603 4931-4931/ W/System.err:     at android.os.Handler.dispatchMessage(Handler.java:102)
  08-10 09:01:21.603 4931-4931/ W/System.err:     at android.os.Looper.loop(Looper.java:154)
  08-10 09:01:21.603 4931-4931/ W/System.err:     at android.app.ActivityThread.main(ActivityThread.java:6692)
  08-10 09:01:21.603 4931-4931/ W/System.err:     at java.lang.reflect.Method.invoke(Native Method)
  08-10 09:01:21.603 4931-4931/ W/System.err:     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1468)
  08-10 09:01:21.603 4931-4931/ W/System.err:     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1358)
  08-10 09:01:21.603 4931-4931/ W/System.err: Caused by: java.lang.NoSuchMethodException: onContextualMenuItemClicked [interface android.view.MenuItem]
  08-10 09:01:21.603 4931-4931/ W/System.err:     at java.lang.Class.getMethod(Class.java:1981)
  08-10 09:01:21.603 4931-4931/ W/System.err:     at java.lang.Class.getMethod(Class.java:1637)
  08-10 09:01:21.603 4931-4931/ W/System.err:     at android.view.MenuInflater$InflatedOnMenuItemClickListener.<init>(MenuInflater.java:241)
  08-10 09:01:21.603 4931-4931/ W/System.err:   ... 22 more
  08-10 09:01:21.604 4931-4931/ A/chromium: [FATAL:jni_android.cc(243)] Please include Java exception stack in crash report

推荐答案

在托管您的 WebView 的任何活动中,覆盖 onActionModeStarted(),操作菜单项,并为每个分配侦听器.一个例子:

In whichever activity is hosting your WebView, override onActionModeStarted(), manipulate the menu items, and assign listeners to each. An example:

@Override
public void onActionModeStarted(ActionMode mode) {
    super.onActionModeStarted(mode);

    MenuInflater menuInflater = mode.getMenuInflater();
    Menu menu = mode.getMenu();

    menu.clear();
    menuInflater.inflate(R.menu.menu_custom, menu);

    menu.findItem(R.id.custom_one).setOnMenuItemClickListener(new ToastMenuItemListener(this, mode, "One!"));
    menu.findItem(R.id.custom_two).setOnMenuItemClickListener(new ToastMenuItemListener(this, mode, "Two!"));
    menu.findItem(R.id.custom_three).setOnMenuItemClickListener(new ToastMenuItemListener(this, mode, "Three!"));
}

private static class ToastMenuItemListener implements MenuItem.OnMenuItemClickListener {

    private final Context context;
    private final ActionMode actionMode;
    private final String text;

    private ToastMenuItemListener(Context context, ActionMode actionMode, String text) {
        this.context = context;
        this.actionMode = actionMode;
        this.text = text;
    }

    @Override
    public boolean onMenuItemClick(MenuItem item) {
        Toast.makeText(context, text, Toast.LENGTH_SHORT).show();
        actionMode.finish();
        return true;
    }
}

这篇关于长按网页视图时的水平菜单充气器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆