我正在努力实现确切的inputType而没有成功。
标准如下
知道如何获得它吗?
答案 0 :(得分:0)
如果您想使用DONE按钮,则无法使用多行
<EditText
android:imeOptions="actionDone" // for adding DONE Button
android:inputType="textMultiLine" // for using multi lines , DONE Button will be disappeared. Use “text” instead.
android:maxLines="3" // 3 lines maximum
/>
控制DONE按钮
editText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView textView, int i, KeyEvent keyEvent) {
if (i == EditorInfo.IME_ACTION_DONE){
// What do you want to do when clicking on Done Button
return true;
}
return false;
}
});