android.widget.EditText.getInputExtras()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(1.0k)|赞(0)|评价(0)|浏览(235)

本文整理了Java中android.widget.EditText.getInputExtras()方法的一些代码示例,展示了EditText.getInputExtras()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。EditText.getInputExtras()方法的具体详情如下:
包路径:android.widget.EditText
类名称:EditText
方法名:getInputExtras

EditText.getInputExtras介绍

暂无

代码示例

代码示例来源:origin: rey5137/material

/**
 * Retrieve the input extras currently associated with the text view, which
 * can be viewed as well as modified.
 *
 * @param create If true, the extras will be created if they don't already
 * exist.  Otherwise, null will be returned if none have been created.
 * @see #setInputExtras(int)
 * @see EditorInfo#extras
 * @attr ref android.R.styleable#TextView_editorExtras
 */
public Bundle getInputExtras (boolean create){
  return mInputView.getInputExtras(create);
}

代码示例来源:origin: k9mail/k-9

subjectView.getInputExtras(true).putBoolean("allowEmoji", true);

代码示例来源:origin: geniusgithub/AndroidDialer

public void addInputExtra(boolean create, String extra) {
  Bundle bundle = super.getInputExtras(create);
  if (bundle != null) {
    bundle.putBoolean(extra, true);
  }
}

相关文章

微信公众号

最新文章

更多

EditText类方法