Questions tagged [custom-keyboard]

Relating to a custom keyboard created to override the default onscreen keyboard in a user interface. Also see [ios-app-extension] for iOS Custom Keyboard Extensions.

Use this tag for questions referring to overriding the default keyboard in a user interface. Also see for iOS Custom Keyboard Extensions.

Apple documentation: App Extension Programming Guide

712 questions
0
votes
2 answers

Custom keyboard: get notified when text updates

Is there a method in UIInputViewController when the text that the custom keyboard is modifying updates? textWillChange/textDidChange only notify me about cursor movement.
Foobar
  • 7,458
  • 16
  • 81
  • 161
0
votes
1 answer

Open containing app from custom keyboard in Swift 3?

Before iOS 10 i used the method written by Valentin Sherwin here. Any workarounds to open the containing app from the custom keyboard with Swift 3?
DanielZanchi
  • 2,708
  • 1
  • 25
  • 37
0
votes
0 answers

Send button not working of custom keyboard in android in case of instagram

I have created a custom keyboard which is working fine so far , but i am getting an issue , when i try to send message in Instagram app (or any other app) , action enter didn't work. My code : private void sendKey(int keyCode) { switch (keyCode)…
0
votes
0 answers

Scrolling of CollectionView in CustomKeyboard JERKs

Facing an issue with the scrolling of CollectionView. When user drags the scroll and leaves it the collectionView scroll jerks just before stopping. The jerk/flicker is very less but I am not able to understand why it is not as smooth as collection…
Rachit
  • 814
  • 9
  • 19
0
votes
2 answers

Android SDK Custom Keyboard, setting background and text colors: of a single key

Here is my code: public class CustomKeyboardView extends KeyboardView { public CustomKeyboardView(Context context, AttributeSet attrs) { super(context, attrs); } @Override public void onDraw(Canvas canvas) { …
scrayne
  • 701
  • 7
  • 18
0
votes
2 answers

Programmatically detect all keyboards which are set in my iPhone settings?

How do I know, how much keyboards enabled into my iPhone keyboard settings. Even if user downloaded other custom keyboard from app store, still I want in list programmatically.
Sunil Targe
  • 7,251
  • 5
  • 49
  • 80
0
votes
0 answers

How to detect programmatically which keyboard user has set in his iPhone?

I want to know which keyboard type is set by a user in his iPhone if there are some custom keyboards installed.
Sunil Targe
  • 7,251
  • 5
  • 49
  • 80
0
votes
1 answer

change order of keys with shift on windows 7

What is my issue: - right now I'm using keyboard layout Polish - Programmer and when i click a key right to 0 ) i get - (minus) and _ (when with Shift) What I would like to have: - pressing key next to 0 ) should put _ and - (with Shift) I tried the…
moltiver
  • 21
  • 2
0
votes
1 answer

Is possible to access Game Center, directly from a custom keyboard extension?

I need to authenticate the user in Game Center from my custom keyboard, according to apple docs it should be done: "Via containing app, keyboard can participate in Game Center and In-App Purchase" I can reach game center from my keyboard extension,…
Martin Romañuk
  • 1,039
  • 10
  • 14
0
votes
1 answer

Override soft keyboard layout

I want to know if it is possible to change the layout as in the xml file for the keyboard design for the android keyboard in any case. Also if i want to have two keyboards in alternate to the existing android keyboard how should i make the hide and…
0
votes
1 answer

UIStoryboard storyboardWithName:@"Keyboard" keeps reloading

I am creating a custom keyboard that recreates the number and decimal keyboard, which is required for app submission. Currently I am using the method: if ([self isOpenAccessGranted] == false) { } else { } to check whether or not the user has…
a2b123
  • 573
  • 1
  • 5
  • 19
0
votes
0 answers

Tamil Android Keyboard crashing except in google apps

I have created a Tamil keyboard using Android Service. It is working perfectly in google apps. In all other apps it is crashing after typing 3 to 10 characters. If I copied the characters from google app and pasted in other apps it is not crashing…
Abish R
  • 1,537
  • 3
  • 18
  • 36
0
votes
1 answer

Can I create two custom keyboards on one container app

I'm trying to create a container app that holds two custom keyboards. I have already developed the first keyboard. When I added the second keyboard extension I didn't get any errors, but after compiling only the first keyboard appeared. Is there a…
Or Chen
  • 33
  • 4
0
votes
0 answers

Received memory warning & crash when adding a UILabel

I have simple emoji keyboard application, which allows the user to select keys and choose emojis to be pasted. They can also resize emojis using a slider. The code works well, but if I introduce a UILabel that shows the new size, then it receives a…
0
votes
1 answer

Custom keyboard for Android app

I'd like to create custom keyboard in my app. I've found that I should create new Input Method. But I don't know how to set this Method to my EditText and disable standard keyboard. I do not want user to have a possibility to change this keyboard.…