我正在使用此自定义视图创建AlertDialog:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
这是我用来创建和显示对话框的代码:
AlertDialog.Builder builder;
builder = new AlertDialog.Builder(getActivity());
LayoutInflater inflater = (LayoutInflater) getActivity().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View dialogView = inflater.inflate(R.layout.edit_text_layout, null);
builder.setView(dialogView);
builder.create().show();
当我尝试从EditText中复制一些文本时,复制/粘贴菜单会出现一个隐藏EditText的奇怪矩形。
我在Marshmallow和Nougat上进行了测试,两者都有同样的问题