简体   繁体   中英

Equivalent of html img src in android

I am showing a link in an Android layout as follows:

<TextView
                android:id="@+id/linkable_text”
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:autoLink="web"
                />

I also do: text.setMovementMethod(LinkMovementMethod.getInstance());

This works but I want to navigate to a different URL than the one displayed in my TextView (I add it dynamically).
I mean the link in the UI shows: file.html but when I press the link I would like to navigate to a url like: http://IP/path/file.html
How can I do that without having to show the whole URL in my TextView

Try this, and let me know what happen..

TextView textView =(TextView)findViewById(R.id.textView);

textView.setClickable(true);

textView.setMovementMethod(LinkMovementMethod.getInstance());
String text = "<a href='http://www.google.com'> Google </a>";
textView.setText(Html.fromHtml(text));

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM