gpt4 book ai didi

android - imeOptions ="actionSend"在 Material 设计中不起作用

转载 作者:行者123 更新时间:2023-12-04 01:41:50 25 4
gpt4 key购买 nike

我想在我的 inputText 键盘上应用发送操作,但我仍然看到默认箭头,而不是发送按钮。我还尝试了多个不同版本的设备,但问题仍然存在。

XML:

 <com.google.android.material.textfield.TextInputLayout
android:id="@+id/layout"
style="@style/AppEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/dimen_16"
android:layout_marginEnd="@dimen/dimen_16"
app:counterMaxLength="9"
app:helperText="@string/idnow_landing_helper_text"
app:helperTextEnabled="true"
app:layout_constraintBottom_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="parent">

<com.google.android.material.textfield.TextInputEditText
android:id="@+id/edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white"
android:digits="ABCDEFGHIJKLMNOPQRSTUVWXYZ-"
android:imeOptions="actionSend"
android:inputType="textCapCharacters"
android:maxLength="9"
android:textColor="@color/grayDark"/>
</com.google.android.material.textfield.TextInputLayout>

Activity :

 override fun onCreate(savedInstanceState: Bundle?) {
...
findViewById<EditText>(R.id.edit_text).setOnEditorActionListener { v, actionId, event ->
return@setOnEditorActionListener when (actionId) {
EditorInfo.IME_ACTION_SEND -> {
//do things
true
}
else -> false
}
}
}

最佳答案

解决方案是添加:

android:singleLine="true"

结果:

<com.google.android.material.textfield.TextInputEditText
android:id="@+id/edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white"
android:imeOptions="actionSend"
android:inputType="textCapCharacters"
android:singleLine="true"
android:digits="ABCDEFGHIJKLMNOPQRSTUVWXYZ-"
android:maxLength="9"
android:textColor="@android:color/black"/>

关于android - imeOptions ="actionSend"在 Material 设计中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57099210/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com