making custom copy and paste menu appear when text is selected

試著忘記壹切 提交于 2019-12-06 10:43:11

问题


I am trying to create a custom copy and paste menu in the Action bar but when I select the text in the EditText area the default copy and paste menu will pop up, but when I long press the EditText area instead of the text, the custom menu appears in the Action bar. How can I have my custom copy and paste menu appear when the text is selected?

I looked at this similar question Override the general paste context menu in Android

public class MainActivity extends Activity
{

@Override
protected void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    EditText Input = (EditText) findViewById(R.id.Input);
    Input.setOnLongClickListener(new View.OnLongClickListener() {

            @Override
            public boolean onLongClick(View p1)
            {
                // TODO: Implement this method
                startActionMode(new ActionBarCallBack());
                return false;
            }
        });
}

class ActionBarCallBack implements ActionMode.Callback
{


    @Override
    public boolean onActionItemClicked(ActionMode mode, MenuItem item)
    {           
        // TODO Auto-generated method stub
        switch(item.getItemId()) {
            case R.id.copyText:
                Toast.makeText(getApplicationContext(), "Copy", Toast.LENGTH_SHORT).show();
                return true;
            case R.id.pasteText:
                Toast.makeText(getApplicationContext(), "Paste", Toast.LENGTH_SHORT).show();
                return true;
            case R.id.cutText:
                Toast.makeText(getApplicationContext(), "Cut", Toast.LENGTH_SHORT).show();
                return true;
            case R.id.help:
                Toast.makeText(getApplicationContext(), "Help", Toast.LENGTH_SHORT).show();
                return true;
        }
        return false;

    }

    @Override
    public boolean onCreateActionMode(ActionMode mode, Menu menu)
    {
        // TODO Auto-generated method stub
        mode.getMenuInflater().inflate(R.menu.contextual_menu, menu);
        return true;
    }

    @Override
    public void onDestroyActionMode(ActionMode mode)
    {
        // TODO Auto-generated method stub

    }

    @Override
    public boolean onPrepareActionMode(ActionMode mode, Menu menu)
    {
        // TODO Auto-generated method stub

        return false;
    }
}

}

回答1:


Try Using setCustomSelectionActionModeCallback() instead of setOnLongClickListener()



来源:https://stackoverflow.com/questions/20298226/making-custom-copy-and-paste-menu-appear-when-text-is-selected

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!