将它放入android

时间:2016-04-08 04:51:30

标签: android webview android-webview android-sharedpreferences android-jsinterface

这里我试图获取剪贴板文本我先尝试过两种方式我首先尝试使用剪贴板,然后使用共享偏好在这两种情况下行为相同当我从自定义webview中选择单词并使用jsinterface复制该单词时我得到了成功的话,但是当我在试图获得那个世界的时候,它给了我一个世界的支持首先我复制单词“A”然后我复制单词“B”然后不情愿地尝试得到“B”它给了我“A”这里是我在webviews中的代码单击了Action Item

    @Override
    public boolean onActionItemClicked(ActionMode mode, MenuItem item) {

        switch (item.getItemId()) {
        case R.id.action_done:
            getSelectedData();
            mode.finish();
            return true;
            break;
        }
   }

和我的getSelectedData()函数

private void getSelectedData() {

    String js = "(function getSelectedText() {" + "var txt;"
            + "if (window.getSelection) {"
            + "txt = window.getSelection().toString();"
            + "} else if (window.document.getSelection) {"
            + "txt = window.document.getSelection().toString();"
            + "} else if (window.document.selection) {"
            + "txt = window.document.selection.createRange().text;" + "}"
            + "JSInterface.getText(txt);" + "})()";
    // calling the js function
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
        evaluateJavascript("javascript:" + js, null);
    } else {
        loadUrl("javascript:" + js);
    }
    showDialog();
}

在这个函数中,getText是来自javascriptInterface的函数,而我的webappInterface类是在

之下
    public class WebAppInterface {
           Context mContext;

       WebAppInterface(Context c) {
       mContext = c;
    }

@JavascriptInterface
public void getText(String text) {
    // put selected text into clipdata
    ClipboardManager clipboard = (ClipboardManager)
            mContext.getSystemService(Context.CLIPBOARD_SERVICE);
    ClipData clip = ClipData.newPlainText("simple text",text);
    clipboard.setPrimaryClip(clip);
    sp.edit().putString("COPIED_TEXT",text).commit();
}
} 

并在我的showDialog函数中我试图获取放在共享偏好和剪贴板文本中的文本,但它得到以前保存的文本,如上所述如何解决此问题我已经在showDIalog函数中尝试过这样但没有正常工作结果

     //ClipboardManager clipboard = (ClipboardManager) context.getSystemService(context.CLIPBOARD_SERVICE);
        //String selectedClipboardText = "";
        //selectedClipboardText = (String) clipboard
        //      .getText();
        String selectedClipboardText = "";
        selectedClipboardText=BilingualNews.BNPref.getString("COPIED_TEXT", "");

        selectedClipboardText = getFilteredSelfTextWord(selectedClipboardText);

0 个答案:

没有答案