Hello All,
I have no experience with Java. So far, I have been surviving on B4A through all the libraries. But now, I want to be able to develop my own library. I am lost and can not find any help on this regard.
I just finished completing FirstLib example twice now and have understood the logic. So coming to the point, I am trying to port
AccessibilityService class to the b4a.
This is where I am so far. I know it is not much
.
package com.home.secondTest;
import anywheresoftware.b4a.BA.Events;
import anywheresoftware.b4a.BA.Permissions;
import anywheresoftware.b4a.BA.ShortName;
@ShortName("SecondTest")
@Permissions(values={"android.permission.BIND_ACCESSIBILITY_SERVICE"})
@Events(values={"onAccessibilityEvent"})
public class SecondTest {
}
Can someone please help me what to do next?