layout\textview_selectable.xml
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:background="?android:attr/selectableItemBackground"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
then in your code:
TextView tv = (TextView)getLayoutInflater().inflate(R.layout.textview_selectable, null);
TypedValue outValue = new TypedValue();
ReplyDeletegetContext().getTheme().resolveAttribute(android.R.attr.selectableItemBackground,
outValue, true);
tv.setBackgroundResource(outValue.resourceId);