It is a glossary application.I have kept the data in string-array ..in strings.xml
<string-array name="title">
<item>aaaa</item>
<item>bbbb</item>
<item>cccc</item>
<item>dddd </item>
</string-array>
<string-array name="definition">
<item>This is first entry relate to bbbb. .</item>
<item>This is a book.</item>
<item>This is aaaa so link it there.</item>
<item>This is related to cccc</item>
</string-array>
In activity1, I have list of all data displaying in a list view. On click of that it will go to activity 2 containing word and definition. In an activity2 I have 2 textviews.One for displaying title and second one for definition. In the definition,if any title exists it should be hyperlinked and onclick of that it should show the title and definition.
I followed the link below to refer.. Android: Launch activity from clickable text
but in above question it is just a string..how to do for string array?
Thank you..