我在一个应用程序屏幕上注意到,当您在EditText中选择单词时,没有用于复制/粘贴文本的上下文菜单。此外,长按一下空白的输入栏也可以正常工作。
此问题仅在此活动的一个上下文中才明显。我尝试通过将建议添加到元素android:textIsSelectable="true"
中来遵循建议,但没有成功。也许还有其他人遇到过这个问题?
这是我的EditText代码:
<EditText
android:id="@+id/etMessage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginBottom="10dp"
android:layout_toStartOf="@id/btnSend"
android:layout_toLeftOf="@id/btnSend"
android:layout_toEndOf="@id/btnStickers"
android:layout_toRightOf="@id/btnStickers"
android:background="@drawable/edittext_background_white_border_corners"
android:hint="@string/type_message"
android:maxLines="5"
android:padding="10dp"
android:textColorHighlight="@color/colorPrimary"
android:textIsSelectable="true"
android:textSize="16sp" />