I've read the many posts on the forum and on StackOverflow and other places on making custom keyboards, but have not found an approach that will work for my Xamarin forms cross-platform project. It is programmatically generated.
For example, I built this keyboard that was recommended in several places:
I try to integrate this into my Xamarin forms app but not able to do this
https://github.com/Vaikesh/CustomKeyboard/blob/master/CustomKeyboard/Activity1.cs
It works fine as a standalone
I want Hebrew language keyboard
in my application Like this
I would appreciate any help.
Thank you.
You could create a
PageRenderer
and use native.axml
layout file to create the customKeyboard
.For example, my
KeyboardPageRenderer
:Effect:
.
I wrote up a simple demo about how to implement this feature, you can see it in this GitHub Repository.
I don't know Hebrew, if you need to achieve the effect like the picture you have post, you need custom the layout in
keyboard.xml
file.Update :
I write a
EntryRenderer
to implement this feature, effect like this, hope this can help you.