gpt4 book ai didi

android图像按钮工具提示

转载 作者:IT老高 更新时间:2023-10-28 23:40:12 26 4
gpt4 key购买 nike

我正在尝试使用类似于操作栏的图像按钮构建应用,但我无法让它们在长按时显示工具提示。

   <ImageButton
android:id="@+id/editUrgent"
style="?android:attr/borderlessButtonStyle"
android:layout_width="48dp"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toLeftOf="@+id/editImportant"
android:hint="@string/hint_urgent"
android:contentDescription="@string/hint_urgent"
android:text="@string/hint_urgent"
android:src="@drawable/clock_light" />

android:contentDescription 适用于悬停(s-pen),但长按仍然无济于事。

最佳答案

使用 api 级别 26,您可以使用内置的 TooltipText:通过 XML:

android:toolTipText="yourText"

ViewCompatDocs

如果您的 minSdk 低于 26,请使用 ToolTipCompat ,例如:

TooltipCompat.setTooltipText(yourView, "your String");

不幸的是,在您的 XML 文件中没有办法做到这一点。

关于android图像按钮工具提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23087517/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com