Mam łącze w moim TextView:Dlaczego link nie działa w widoku tekstowym?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
...
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:autoLink="all"
android:linksClickable="true"
android:text="@string/app_description" />
</RelativeLayout>
link jest częścią zasobów:
<?xml version="1.0" encoding="utf-8"?>
<resources>
...
<string name="app_description">Some text with the <a href="http://www.example.com">link</a>.</string>
</resources>
jakiś link nie działa. Jaki mógł być powód? Jest wyświetlany jak link. Ale kliknięcie nie otwiera przeglądarki.
kod Klasa:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Czy próbowałeś z android: klikalne = "true"? –
Zobacz, czy [Jak utworzyć łącze w klikalnym kodzie tekstowym] (http://stackoverflow.com/questions/2734270/how-do-i-make-links-in-a-textview-clickable) lub [Linki w TextView Odpowiedzi na pytania (http://stackoverflow.com/questions/4790746/links-in-textview). –
Spróbuj tego: android: autoLink = "web" –