I am trying to make text in TextView
clickable (allow copy to clipboard) and links also clickable but without any success.
Here is my MainActivity.xml code:
android:enabled="true"
android:textIsSelectable="true"
android:focusable="true"
android:longClickable="true"
android:linksClickable="true"
Here is the MainActivity Kotlin file:
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
Any help would be appreciated.