Hello everybody,
There is a way, in B4A, how to override an android method if there isn't setOnXxx method.
For example: android.view.View onAnimationEnd.
With java this can be easily done using the "@override" annotation
May it be done in B4A via reflection?
Thanks
There is a way, in B4A, how to override an android method if there isn't setOnXxx method.
For example: android.view.View onAnimationEnd.
With java this can be easily done using the "@override" annotation
B4X:
<Java Code>
@Override
protected void onAnimationEnd() {
super.onAnimationEnd();
//my code
}
May it be done in B4A via reflection?
Thanks