2015-04-02 243 views
0

我顯示如下在Android佈局的鏈接HTML IMG SRC的:相當於Android的

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

我也做:text.setMovementMethod(LinkMovementMethod.getInstance());

這工作,但我想導航到不同的URL比在我的TextView中顯示的那個(我動態地添加它)。
我指的是在用戶界面的鏈接顯示:file.html但是當我按下鏈接,我想轉到像一個網址:http://IP/path/file.html
我如何能做到這一點,而無需顯示整個URL在我的TextView

+0

你的標題有點混亂。你可以刪除* Img *部分,因爲我不是它適當地定義你的問題。 – Beggs 2015-04-02 11:19:34

回答

1
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)); 
+0

作品!有沒有辦法顯示光標越過鏈接時顯示的小手? – Jim 2015-04-02 11:31:38