# 输入法 input

# 导入模块

import input from '@system.input';

# input.openInputMethod(OBJECT)

# 支持版本

Z6A/Z6S 1.5.0

D2/Q1A/Y8/D2A/Q2A 4.3.0

# 示例

输入法示例代码 (opens new window)

# 文案定制

支持版本: Z6 Pro V1.2.0, 后续会同步其他机型

不支持的系统版本,设置不会生效,不影响功能

示例代码:

 input.openInputMethod({
      inputText: 'test input', // 输入区域文案
      confirmText: '搜索', // 按钮文案
      maxLength: 33,
      success: (res) => {
        console.log('input success:' + res.outputText);
      },
      fail: (err, code) => {
        console.log('input failed' + err + " code:" + code);
      }
    });

展示效果:

展示效果: