Как сделать кликабельную ссылку в текстовом String.xml на Android?
Вот мой код XML
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MwActivityInfo"
android:orientation="vertical"
android:background="@color/BackgroundColor">
...
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/my_web"
android:textColor="@color/Black"
android:layout_marginTop="5dp"
android:autoLink="web"
android:linksClickable="true"/>
</LinearLayout>
а вот код string.xml
<string name="my_web">Please contact me <a href="https://myexampleweb.com">myweb.com</a></string>
когда я запускаю свое приложение и нажимаю текст, он не работает. Пожалуйста, помогите мне и спасибо.