我在PopupWindow中有一个EditText,当PopupWindow出现时,EditText中的光标是可见的但是我无法编辑它的文本。
我的代码:
popupwindolayout.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/wordfragd2">
<EditText
android:id="@+id/noteedit_popup_textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textMultiLine"
android:text="my notes"
android:background="@drawable/wordfragd1"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginBottom="1dp"
android:padding="10dp"
android:editable="true">
<requestFocus />
</EditText>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/noteedit_popup_textview"
android:layout_marginTop="1dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginBottom="10dp"
android:orientation="horizontal"
android:weightSum="2"
>
<Button
android:id="@+id/done_popup_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Done"
android:layout_weight="1"
android:background="@drawable/wordfragd1"
android:layout_marginRight="1dp"
/>
<Button
android:id="@+id/cancel_popup_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Cancel"
android:layout_weight="1"
android:background="@drawable/wordfragd1"
android:layout_marginRight="1dp" />
</LinearLayout>
</RelativeLayout>
弹出窗口的Javas:
PopupWindow editnote_popup;
LayoutInflater inflater = (LayoutInflater) getActivity()
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view=inflater.inflate(R.layout.wordnoteedit_popup,
null);
editnote_popup=new PopupWindow(view, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
editnote_popup.setContentView(view);
editnote_popup.showAtLocation(view, Gravity.CENTER, 0, 0);
我正在使用片段。我在按钮点击时显示了一个弹出窗口。在弹出窗口中,我通过XML添加了编辑文本。在运行时,我无法输入该编辑文本。但是我的光标可见并闪烁。
任何想法?
答案 0 :(得分:1)
在此行editnote_popup=new PopupWindow(view, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
中添加 true 以使其可集中。
它将是:
editnote_popup=new PopupWindow(view, LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT, true);