It's just a coincidence but since I updated the Android SDK I get an error:
java.lang.RuntimeException: Object shoulds first be initialized (View).
This come from the lib: CustomListView
Any ideas?
java.lang.RuntimeException: Object shoulds first be initialized (View).
This come from the lib: CustomListView
Any ideas?
B4X:
Public Sub GetItemFromView(v As View) As Int
Dim parent As Object
Dim current As Object
parent = v '<----- In error
Do While (parent Is Panel) = False Or sv.Panel <> parent
current = parent
Dim jo As JavaObject = current
parent = jo.RunMethod("getParent", Null)
Loop
v = current
Return v.Tag
End Sub