Android ListView 的 OnItemClickListener 不适用于不可聚焦的 PopupWindow

标签 android listview popupwindow onitemclicklistener

在我的 Android 应用程序中,我有一个 EditText。当 EditText 获得焦点时,将显示一个 PopupWindow,其中包含一个 ListView。当 PopupWindow 出现在屏幕上时,用户可以继续在 EditText 中键入,同时他/她应该能够单击 ListView 上的项目 关闭 PopupWindow。 (根据单击哪个 ListView 项目,除了关闭 PopupWindow 之外,还应该发生其他事情,但在这里无关紧要。)

问题是,虽然“继续输入”部分有效,但“单击项目”部分无效,因为 ListViewOnItemClickListener 永远不会被调用,我不明白为什么。

这是我的 activity_main.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ddd"
    android:focusableInTouchMode="true"
    tools:context="com.example.popuptest3.MainActivity" >

    <EditText
        android:id="@+id/edtPhone"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:inputType="phone" />

</RelativeLayout>

我的popup_window.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#fff" >

    <ListView
        android:id="@+id/lstItems"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_marginBottom="60dp" />

    <Button
        android:id="@+id/btnDismiss"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:text="Dismiss" />

</RelativeLayout>

我的list_item.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="50dp" >

    <TextView
        android:id="@+id/txtItem"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center_vertical"
        android:text="Item Text"
        android:textAppearance="?android:attr/textAppearanceMedium" />

</RelativeLayout>

在我的 MainActivity 类中,我有以下准备代码:

private PopupWindow popup = null;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    prepareControls();
}

private void prepareControls() {
    final EditText edtPhone = (EditText)findViewById(R.id.edtPhone);
    edtPhone.setOnFocusChangeListener(new OnFocusChangeListener() {
        @Override
        public void onFocusChange(View v, boolean hasFocus) {
            if (hasFocus)
                openPopup(edtPhone);
            else
                closePopup();
        }
    });
}

也就是说,我在edtPhone获得焦点时打开PopupWindow,在edtPhone失去焦点时关闭PopupWindow重点。然后我有:

private void openPopup(View parent) {
    closePopup();

    // Inflate the view of the PopupWindow.
    LayoutInflater layoutInflater = LayoutInflater.from(this);
    View view = layoutInflater.inflate(R.layout.popup_window,
            new LinearLayout(this), false);
    final Activity activity = this;

    // Prepare the ListView.
    ListView lstItems = (ListView)view.findViewById(R.id.lstItems);
    lstItems.setAdapter(new ListAdapter(this));
    lstItems.setOnItemClickListener(new OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View view,
                int position, long id) {
            hideKeyboardAndClearFocus(activity);
        }
    });

    // Prepare the Button.
    Button btnDismiss = (Button)view.findViewById(R.id.btnDismiss);
    btnDismiss.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
            hideKeyboardAndClearFocus(activity);
        }
    });

    // Create and show the PopupWindow.
    popup = new PopupWindow(view, 400, 300, false);
    popup.showAtLocation(parent, Gravity.LEFT | Gravity.TOP, 0, 60);
}

btnDismiss 按钮不是我计划的一部分;我在这里添加它只是为了演示目的。最后我有:

private void closePopup() {
    if (popup != null) {
        popup.dismiss();
        popup = null;
    }
}

private static void hideKeyboardAndClearFocus(Activity activity) {
    InputMethodManager manager = (InputMethodManager)activity.
            getSystemService(Activity.INPUT_METHOD_SERVICE);
    manager.hideSoftInputFromWindow(
            activity.getCurrentFocus().getWindowToken(), 0);
    activity.getWindow().getDecorView().clearFocus();
}

我认为这不需要解释,ListAdapter 类非常标准,所以我省略了它。

现在,当我点击 edtPhone 时,它获得焦点,软键盘出现,PopupWindow 打开。我可以在 edtPhone 中输入一些内容,当我点击 btnDismiss 时,edtPhone 失去焦点,软键盘消失,并且 PopupWindow 关闭,一切如预期。但是,如果我点击 lstItems 上的某个项目而不是 btnDismiss,则什么也不会发生。使用 Log 我可以看到 OnItemClickListener 没有被调用。有趣的是,ListView 可以很好地滚动,就是不能点击。

我知道this post但该解决方案不适用于我的目的。如果我改变这一行:

popup = new PopupWindow(view, 400, 300, false);

以下内容:

popup = new PopupWindow(view, 400, 300, true);

PopupWindow 变得可聚焦,ListView 变得可点击,好吧,但是我无法继续在 edtPhone 中输入。事实上,如果 Activity 上还有其他控件,它们都会变得无法访问,就好像 PopupWindow 是“模态”的。

我也尝试过 android:focusable="false",但没有成功。而且我没有进行自动完成,所以 AutoCompleteTextView 不是我需要的。

那么为什么 OnItemClickListener 没有在不可聚焦的 PopupWindow 上调用?我做错了什么吗?

最佳答案

将弹出窗口设置为不可聚焦

popupwindow.setFocusable(false);
popupwindow.setTouchable(true);
popupwindow.setOutsideTouchable(true);

扩展 ListView 并覆盖以下方法

@Override
public boolean hasFocus() {
    return true;
}

@Override
public boolean isFocused() {
    return true;
}

@Override
public boolean hasWindowFocus() {
    return true;
}

这就是 AutoCompleteTextView 实现建议弹出窗口的方式。 如果需要使用DPAD键或其他导航键选择列表项,则需要将按键事件从EditText传递给ListView。

关于Android ListView 的 OnItemClickListener 不适用于不可聚焦的 PopupWindow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30778295/

相关文章:

C# - 在表单上格式化 ListView 控件的常用方法?

c# - 在 ListView ItemTemplate 填充中制作网格

Android Location.distanceTo(...) 和 Location.bearingTo(...) 没有返回正确的结果

android - 在 Android 中检查多个复选框

java - 应用程序关闭并出现此错误 - 请求带有表名的列名

android - 为 popUpWindow 设置样式

html - 使用响应式高度/滚动将弹出模式居中

android - 替换导航查看项目涟漪效应

wpf - 在包含按钮的 ListView 中,如何获取单击的索引?

javascript - 提交带有图像的表单,并在弹出窗口中