Declare a type in Process_Globals sub of any code or activity module
eg.
Type MyView(row1 As String, row2 As String)
Then, on the ItemClick event of your listview, you assign the value of the item clicked to a "MyView" variable
eg.
Sub ListView1_ItemClick (Position As Int, Value As Object)
Dim all As MyView ' Declaring a variable 'all' as the type we created above in Process_Globals
all = Value 'Assigning the value of the clicked item to our variable
End Sub
Then, to retrieve one of the two lines in the item, you call any of the following:
Dim stt as String = all.row1 'This gets the 1st line in the item and assigns it to a String variable stt
Dim stt2 as String = all.row2 'This gets the 2nd line in the item and assigns it to a String variable stt2
I hope this will be of help.