InterviewSolution
Saved Bookmarks
| 1. |
What is Android Callable Wrappers? |
|
Answer» When the ANDROID runtime needs to call managed code, we use Android Callable Wrappers. These wrappers are needed because it is not POSSIBLE to register CLASSES with Android runtime during a runtime. Thus WHENEVER there is a lack of runtime type registration support needed, Android Callable Wrappers come into play. |
|