android textView加载html 解决a标签链接无效

  直接贴代码

  

		textContent = (TextView) findViewById(R.id.content);
		String strLoadString="点击我";
		CharSequence charSequence = Html.fromHtml(strLoadString);
		textContent.setText(charSequence);
		textContent.setClickable(true);
		textContent.setMovementMethod(LinkMovementMethod.getInstance());

xml代码

 

  	
        

一定不要加  android:autoLink 属性  否则html里面加载的a标签就无效


你可能感兴趣的:(android)