【发布时间】:2015-06-24 18:15:02
【问题描述】:
我需要在我的键盘上添加完成按钮
我添加的尝试
android:imeOptions="actionDone" android:imeActionLabel="完成" 到我的 Edittext
<EditText
android:singleLine="true"
android:id="@+id/passwordtext"
android:layout_width="match_parent"
android:imeOptions="actionDone"
android:imeActionLabel="DONE"
android:layout_height="wrap_content"
android:ems="10"
android:hint="@string/password"
/>
但我只能在横向模式下完成,我怎么能在里面完成 Enter
【问题讨论】: