Go to file
openharmony_ci 991d35a94e
!173 修改inputmethodIMC
Merge pull request !173 from mashaoyin/master
2022-07-20 09:16:53 +00:00
etc !168 IWYU整改:inputmethod 2022-07-16 10:18:47 +00:00
figures refresh data 2021-09-24 20:19:22 +08:00
frameworks Signed-off-by: ma-shaoyin <mashaoyin1@huawei.com> 2022-07-20 16:21:06 +08:00
interfaces/kits/js change the line length of switch napi fuction name 2022-07-05 13:38:33 +08:00
profile add inputmethod 2021-09-14 20:33:47 +08:00
services !166 miscservices_inputmethod 规范编码 2022-07-17 15:10:31 +00:00
test/fuzztest Signed-off-by: ma-shaoyin <mashaoyin1@huawei.com> 2022-07-18 11:30:24 +08:00
unitest add switch input fuction 2022-07-05 11:26:50 +08:00
BUILD.gn 合入js接口能力 2022-02-22 16:14:36 +08:00
bundle.json Signed-off-by: ma-shaoyin <mashaoyin1@huawei.com> 2022-07-13 20:49:07 +08:00
hisysevent.yaml Signed-off-by: GlaryCastle <yangpeng190@huawei.com> 2022-07-05 17:04:41 +08:00
inputmethod.gni aafkw->ability_runtime 2022-06-28 10:23:09 +08:00
LICENSE add inputmethod 2021-09-14 20:33:47 +08:00
README_zh.md refresh data 2021-09-24 20:19:22 +08:00
README.md update README.md. 2022-05-09 00:35:21 +00:00

miscservices_inputmethod

Introduction

Input Method Framework, is used to connect the application and input method. the application can input text through the input method

图 1 子系统架构图

Warehouse path

/base/miscservices/inputmethod

Introduction to framework code

The input method framework currently has four modules, as follows:

  1. Application client

Path: /base/miscservices/inputmethod/frameworks/inputmethod_controller

Function: realize the service delivery of application and input method framework, including the binding between application and input method service, application display and hiding request for input method, etc

  1. Input method client

Path: /base/miscservices/inputmethod/frameworks/inputmethod_ability

Function: the intermediate bridge between input method framework service and input method delivery, including monitoring the current status of input method, etc

  1. Input method service

Path: /base/miscservices/inputmethod/services

Function: as the core of the input method framework, the main processing logic of the input method is completed here

  1. Input method JS interface

Path: /base/miscservices/inputmethod/interfaces/kits/JS

Function: the temporarily exposed JS interface is mainly reserved for calling input methods

Main functions supported by the framework

  1. Click in the edit attribute control to invoke the default input method application through the input method framework

  2. Typing can be carried out through the input method application, and characters can be input to the application client on the screen

Debugging method

  1. Compile command

./build.sh --product-name (Fill in the specific product name, such asHi3516DV300) --build-target inputmethod_native

  1. push so file

in $root\out\ohos-arm-release\miscservices\inputmethod_native, push libinputmethod_client.z.so libinputmethod_ability.z.so libinputmethod_service.z.so to system/liband push libinputmethodability.z.so to system/lib/module and make sure the four so files is readable at least.

  1. reboot

Participation contribution

  1. Fork warehouse
  2. Submission code
  3. Create a new pull request
  4. Commit is complete