amirisback / keyboard

Custom Keyboard Like Google Keyboard
https://amirisback.github.io/keyboard/
Apache License 2.0
104 stars 24 forks source link

Difficulty Implementing Navigation #53

Closed Pify closed 11 months ago

Pify commented 11 months ago

currently im developing feature using this lib. Im confused on how to implement navigation from one page to another for example i have ListPage & inputListPage. how can i implement the navigation ? is it possible using fragment ? from what i understand after learning this library your implementation only using visible & gone properties

Any help would be greatly appreciated !

amirisback commented 11 months ago

currently im developing feature using this lib. Im confused on how to implement navigation from one page to another for example i have ListPage & inputListPage. how can i implement the navigation ? is it possible using fragment ? from what i understand after learning this library your implementation only using visible & gone properties

Any help would be greatly appreciated !

thanks for your question, this lib using InputMethodService, that class is not Activity / Fragment, but that class call on Activty, so the possible way to do is create a Custom UI extend View Class Parent like i'm doing. CMIIW, u can aslo find the original creator on this https://github.com/SimpleMobileTools/Simple-Keyboard

Pify commented 11 months ago

currently im developing feature using this lib. Im confused on how to implement navigation from one page to another for example i have ListPage & inputListPage. how can i implement the navigation ? is it possible using fragment ? from what i understand after learning this library your implementation only using visible & gone properties Any help would be greatly appreciated !

thanks for your question, this lib using InputMethodService, that class is not Activity / Fragment, but that class call on Activty, so the possible way to do is create a Custom UI extend View Class Parent like i'm doing. CMIIW, u can aslo find the original creator on this https://github.com/SimpleMobileTools/Simple-Keyboard

can you give me an example or what class is it in your library i can refer ? im still confused to implement the navigation. is the navigation only possible using baseKeyboardIME and showing/hiding layouts ?