AndroLua
AndroLua copied to clipboard
view:getClass():getName()
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?