Android Question How to add extends InputMethodService to Service Module?

tummosoft

Active Member
Licensed User
Longtime User
I want to create a custom keyboard. I know that this is not the best idea with B4A. But
I want to know How to add extends InputMethodService to Service Module?

public class InputMethodService extends AbstractInputMethodService {

...
}

Thanks!
 

Peter Simpson

Expert
Licensed User
Longtime User
What do you need that for?
Going right off the rails you could always create a home screen keyboard widget, but even that does not make much sense and it's so much work that it would take a long log long time to perfect to.

@LucaMs is correct though, service module has no GUI, the closest things is a widget...
 
Upvote 0
Top