Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I edit the source code of android os keyboard?

Tags:

android

I use android keyboard but I want to add a row of keys to it so I downloaded the source code of this keyboard from https://android.googlesource.com/platform/packages/inputmethods/LatinIME/ ,but I face the following error

The import com.android.inputmethodcommon cannot be resolved

import com.android.inputmethodcommon.InputMethodSettingsFragment;
like image 670
Mohammed Subhi Sheikh Quroush Avatar asked Feb 06 '13 14:02

Mohammed Subhi Sheikh Quroush


People also ask

How do I use function keys on Android?

For devices running on Android 8 and later, the keyboard settings are located at Settings > General management > Language and input. To switch on the F-Secure KEY keyboard: Under Keyboards, first tap Show Keyboard button and then On-screen keyboard.


1 Answers

You are able to create your own custom keyboards in Android to have any number or keys displayed. Using Keyboard, Keyboard.Row, and Keyboard.Key

For more customizing of the keyboard check out this blog post.

like image 200
Walls Avatar answered Sep 23 '22 17:09

Walls