Android Linkify text - Spannable Text in Single Text View - As like Twitter tweet

后端 未结 4 2102
小蘑菇
小蘑菇 2020-11-28 10:53

I have a textView and text like

\"This is the Simple Text with KeyWord and the Link to browse\"

in the above text i want to

4条回答
  •  暖寄归人
    2020-11-28 11:05

    Generate your TextView in the following manner:

    TextView t3 = (TextView) findViewById(R.id.text3);
    t3.setText(Html.fromHtml("This is the Simple Text with 
        Keyword and the 
        Link to browse"));
    t3.setMovementMethod(LinkMovementMethod.getInstance());
    

    Specify your activity the following way:

    
        
            
            
        
        
            
            
            
            
        
    
    

    I think it should work. Might require some tweaking. I did not get the time to test it. Let me know if it works.

提交回复
热议问题