在AlertDialog上复制/粘贴带有奇怪矩形的菜单

时间:2017-07-03 14:39:24

标签: android android-alertdialog

我正在使用此自定义视图创建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的奇怪矩形。

enter image description here

我在Marshmallow和Nougat上进行了测试,两者都有同样的问题

1 个答案:

答案 0 :(得分:1)

正如它提到here,问题与风格有关。在这种情况下,从我的自定义AlertDialog样式中删除bacgkround颜色项解决了问题。