List of usage examples for android.widget TextView setCustomSelectionActionModeCallback
public void setCustomSelectionActionModeCallback(ActionMode.Callback actionModeCallback)
From source file:org.chaos.fx.cnbeta.details.DetailsFragment.java
@Override public void addTextToContent(String text) { TextView view = (TextView) getActivity().getLayoutInflater().inflate(R.layout.article_content_text_item, mContentLayout, false);//from ww w .jav a 2s. c o m mContentLayout.addView(view); scaleTextSize(view, mTextRelativeSize); view.setText(text); if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.M) { view.setCustomSelectionActionModeCallback(mSelectedActionCallback); } // TODO: 18/05/2017 ?? // Linkify.addLinks(view, Linkify.WEB_URLS); }