Select text from textview on one click in android

后端 未结 3 1290
花落未央
花落未央 2020-12-19 21:26

In one touch i want to get a option to select and copy the text from textview like the image show here.

\"enter

3条回答
  •  独厮守ぢ
    2020-12-19 21:44

    In your onClickListener for the TextView:

    ClipboardManager clipboard =
        (ClipboardManager) getSystemService(CLIPBOARD_SERVICE); 
    clipboard.setText(yourTextView.getText());
    

    ed : Answer to the question in comments :

      yourTextView.setOnClickListener(new View.OnClickListener() {
    
            @Override
            public void onClick(View v) {
                // TODO: add your code here
    
            }
        });
    

提交回复
热议问题