You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm using androLua for general View widgets in android, and by just changing dot '.' to colon ':' it works well like java code.
but my lua script gets error only in getClass():getName().
Log = luajava.bindClass("android.util.Log")
function(view)
Log.d("abc",view:getClass():getName())
end
getClass() can't find getName() method. is it not possible to use 'Class' class or what's right way to use this?
The text was updated successfully, but these errors were encountered:
Hi, I'm using androLua for general View widgets in android, and by just changing dot '.' to colon ':' it works well like java code.
but my lua script gets error only in getClass():getName().
Log = luajava.bindClass("android.util.Log")
function(view)
Log.d("abc",view:getClass():getName())
end
getClass() can't find getName() method. is it not possible to use 'Class' class or what's right way to use this?
The text was updated successfully, but these errors were encountered: