我正在尝试构建一个带有图像按钮的应用程序,它像操作栏一样工作,但我无法让它们在长按时显示工具提示.
<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" />
Run Code Online (Sandbox Code Playgroud)
android:contentDescription适用于悬停(s-pen)但长按仍然无效.