0

目前,我观察到“通过”片段显示工具提示的奇怪行为,但我不知道如何摆脱它。任何想法或提示将不胜感激!

我有ImageButton一些contentDescription

        <androidx.appcompat.widget.AppCompatImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:contentDescription="Content description"
            android:src="@drawable/ic_image"
            />

这样做是为了让用户在将触控笔/S-Pen 或鼠标指针悬停在图像上时看到帮助文本。这是期望的行为:

正常行为

AlertDialogActivity 上显示 an 时,不会显示任何工具提示。这也是预期的行为:

AlertDialog 上没有工具提示

但是,当片段显示在ImageButton工具提示上时,总是会显示。这是一个不受欢迎的行为,也是这个问题的一大奥秘。该片段具有半透明的绿色背景:

片段上的工具提示

FrameLayout片段布局中使用了一个简单的:

<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layout1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#B94EC14A"
    />

就像用户可以点击片段一样。

如果添加了这些行,则可以摆脱“点击”行为,但不能摆脱“悬停”:

        layout1.setClickable(true);
        layout1.setFocusable(true);

        layout1.setOnTouchListener((v, event) -> true);
        layout1.setOnHoverListener((v, event) -> true);
        layout1.setOnGenericMotionListener((v, event) -> true);

看起来这里使用了其他类型的事件。

  • 哪种事件用于通过视图翻译“悬停”事件?
  • 如何防止出现此工具提示?(需要与 AlertDialog 类似的行为)
4

1 回答 1

0

不幸的是,我找不到问题的原因,所以我最终将一个片段作为对话框启动:

MyFragment fragment = new MyFragment();
...
fragment.setArguments(bundle);
fragment.setCancelable(false);
fragment.show(getSupportFragmentManager(), "dialog");

或者对于不同的用例将片段打包到一个空活动并启动这个活动:

Intent intent = new Intent(this, MyActivity.class);
intent.putExtra(...);
startActivityForResult(intent, REQUEST_CODE);

在这种情况下(如问题中已经描述的),工具提示不会在悬停时显示。

于 2020-09-06T21:18:20.410 回答