Android Question RSS detect if item does not have tumbnail

Devv

Active Member
Licensed User
Longtime User
Hi
this is how im detecting if an RSS item have a thumbnail and i

B4X:
Sub Parser_StartElement(Uri As String, Name As String, Attributes As Attributes)
    If Attributes.Size > 1 Then
        imglink = Attributes.GetValue(2)      
    End If
End Sub

How can i know if an item does not have a thumbnail ?
 
Top