I was creating list using the array.xml and populating it into listView
The problem is I need to add a hyperLinked text within the arrayItem decsription so than when I popu
Try this way,hope this will help you to solve your problem.
<string name="link">1.Click <a href="http://www.google.com"> here </a> to goto wesite.</string>
textView.setMovementMethod (LinkMovementMethod.getInstance());
textView.setText(Html.fromHtml(getString(R.string.link)));