作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
请原谅这是一个菜鸟问题。我用 android:maxLines="1"
替换了 android:singleLine="true"
(现已弃用),现在 setOnEditorActionListener
似乎没有火。
<EditText
android:id="@+id/listItemET"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="1"
android:imeOptions="actionDone"
android:text="List Item"/>
EditorActionListener
用于编辑文本。
listItemET.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if(actionId == EditorInfo.IME_ACTION_DONE) {
Toast.makeText(context, "Clicked", Toast.LENGTH_SHORT).show();
}
return true;
}
});
最佳答案
在 EditText 中使用 android:inputType="text"
以及 maxLines 属性。示例 fragment :
<EditText
android:id="@+id/editText"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:maxLines="1"
android:inputType="text"/> <----- add this
关于android - 未为 maxLines ="1"触发 EditorAction,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45905575/
我已将 EditText 控件的 Keypress 和 EditorAction 事件处理程序组合到一个名为 InputField_KeyPressEditorAction 的方法中。当我输入一些文本
请原谅这是一个菜鸟问题。我用 android:maxLines="1" 替换了 android:singleLine="true" (现已弃用),现在 setOnEditorActionListene
在许多文档中,例如 here据描述,旧的扩展点 org.eclipse.ui.actionSets , org.eclipse.ui.viewActions , org.eclipse.ui.edit
我是一名优秀的程序员,十分优秀!