I need to set a custom drawable and then retrieve it from the res folder...
Can anyone point me an example without using other than core or reflection libs?
I did find a small sub in another thread that works... basically the same...
B4X:
Private Sub LoadResourceDrawable(id As Int) As Object
Dim r As Reflector
r.Target = r.GetContext
r.Target = r.RunMethod("getResources")
Return r.RunMethod2("getDrawable", id, "java.lang.int")
End Sub