I know that setting android:textIsSelectable=\"true\" in xml for the TextView will show the native text selection popup and I\'ve been using that i
android:textIsSelectable=\"true\"
TextView
Add In Your RecyclerView Adapter:
public ViewHolder(View itemView) { super(itemView); txtDate = (TextView) itemView.findViewById(R.id.txtDate); txtDate.setTextIsSelectable(true); }
its worked for me..