Thanks so much for your help,
Prior to your response, I did try
Drawable crossDrawable = getContext().getResources().getDrawable( getContext().getResources().getIdentifier(“close”, “drawable”, getContext().getPackageName()) );
which is similar to the last option you gave wiithout the BA reference you cited, which is probably why it did not work.
I put in a cheat workaround because an older version of the sdk required only one png file to implement. I loaded the close.png in my B4A code, wrapped it in a drawable object and passed the object to the sdk in the method call from B4A.
The new version of the sdk has many png files to load, so your code will help me going forward. Thanks again.