Questions tagged [gboard]

Gboard is a enhanced softkeyboard from Google Inc. for Android devices and iPhone which combines advanced typing functions with a search

Main features:

Glide Typing — Type faster by sliding your finger from letter to letter

Voice typing — Easily dictate text on the go

Emoji Search — Find that emoji, faster

GIFs — Search and share GIFs for the perfect reaction. (Available in apps that have implemented image keyboard support)

Multilingual typing — No more switching between languages manually. Gboard will autocorrect and suggest from any of your enabled languages, without the need to tap on the globe key.

Google Translate — Translate as you type in the keyboard

Search and share anything from Google: — Press on "G" to search and share: nearby stores and restaurants, weather forecasts, news articles, sports scores, etc.

Links:

Gboard for Android on Google Play

Gboard for iPhone on iTunes

Gboard on Wikipedia

56 questions
1
vote
0 answers

QT Android Gboard overlaps input fields

Since the last update of the Gboard Qt seems to have issues with detecting it and push input fields above it accordingly. Gboard version: 9.7.09.323382208-tv_release-armeabi-v7a I have a minimal code example in which it can be easily…
light01
  • 155
  • 1
  • 3
  • 17
1
vote
1 answer

Is the Source Code of Android TV's GBoard Available

I tried looking through google's repositories, but I couldn't find the source code for android TV's version of gboard. Is the source available anywhere?
Sarthak
  • 11
  • 1
1
vote
0 answers

How to edit PersonalDictionary.zip, can I add words manually using desktop computer and import the file again?

While adding a word to the Personal Dictionary in Android it suggests the word while typing on the mobile keypad. While exporting the dictionary it exports to a file PersonalDictionary.zip (file's content starts from: # Gboard Dictionary version:1,…
asif
  • 177
  • 1
  • 14
1
vote
0 answers

How to fix "angular ionic pwa application custom keyboard (like gboard) not working on ios?

I have developed an application in ionic/angular and it works fine in both devices but when I export as PWA app in ios/safari if user do not use ios default keyboard, he/she cant type and fill input fields and cant have interaction with the keyboard…
1
vote
0 answers

"App name" doesn't support image insertation here

I am trying to enable the Image keyboard support to my app. I followed the guide from this link https://developer.android.com/guide/topics/text/image-keyboard and trying to understand this code. EditText editText = new EditText(this) { …
Noryn Basaya
  • 664
  • 1
  • 5
  • 21
1
vote
1 answer

Image keyboard : selecting rich content(Gif, Stickers) reopens activity

I am trying to implement image keyboard support in my app. I followed official documentation. To support this I needed to override EditText's onCreateInputConnection to tell softkeyboard what app is supporting & a callback to get the selected…
Sayem
  • 4,891
  • 3
  • 28
  • 43
1
vote
0 answers

GBoard image insertion not working on pre Oreo devices with androidx

I followed these guidelines to support Keyboard image insertion into my app which is pretty straight forward: val editText = object : EditText(this) { override fun onCreateInputConnection(editorInfo: EditorInfo): InputConnection { val ic:…
M-Wajeeh
  • 17,204
  • 10
  • 66
  • 103
1
vote
0 answers

Edit text showing not suitable for children gifs (GBoard)

I have this app that is made for kids and today I received a complaint that Gboard gifs is showing not suitable for kids gifs. ¿Do you know if there is any option I can disable the Gboard feature on my Edit Texts? Maybe with android:inputType I…
Sebastian Paduano
  • 301
  • 1
  • 5
  • 17
1
vote
1 answer

Adding custom stickers in Gboard for iOS

I have created an Android sticker application which is searchable in Android Gboard, with help of nice tutorial provided here and firebase app indexing. My question here is how to achieve same for Gboard for IOS? I have not found any resource for…
Geek
  • 1,510
  • 14
  • 17
1
vote
1 answer

GBoard Keyboard GIF Sticker Integration

I am trying to support GBoard in my app. I want users to be able the select GIF from GBoard. My onCommitContent looks like this: @Override public void onCommitContent(InputContentInfoCompat inputContentInfo, int flags, Bundle opts) { try { …
blizzard
  • 31
  • 4
1
vote
0 answers

How to get gif and stickers uri from Gboard

I'm trying to integrate gboard stickers and gifs to my app. But don't know how to get the uri from Gboard. Tried searching on google. But didn't find much docs about it. So need help on how to do it. Thank you.
Bucky
  • 1,116
  • 2
  • 18
  • 34
1
vote
1 answer

Gboard Keyboard: Numeric inputType not working on EditText in ListView

I am using default Android Gboard keyboard. But there is an issue when I am using inputType="number" on the EditText. The keyboard shown but type values not display in EditText, also not getting any type value in TextWatcher. The EditText in the…
WISHY
  • 11,067
  • 25
  • 105
  • 197
1
vote
0 answers

Go to previous app in iOS ( like GBoard do )

Can't figure out how Google did this. But when you use GBoard (Google's custom keyboard), they have dictation function inside and if you use it, keyboard open GBoard app which listening (because custom keyboards have no access to microphone) and…
0
votes
0 answers

How to suggest changes to windows and android (gboard) built-in keyboard layouts?

The built-in Nepali keyboard layout in Windows and android are missing several characters and awkward to use in general. Is there a way to suggest changes to those layouts ? I see windows layout in CLDR…
mzzzzb
  • 1,422
  • 19
  • 38
0
votes
0 answers

Double input when using Android GBoard on a React form with nested input component

I have a nested component structured as follows: const Child = ({ onChange, value }) => { const [localValue, setLocalValue] = useState(""); useEffect(() => { setLocalValue(value); }, [value]); return