mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
23 lines
544 B
Java
23 lines
544 B
Java
package androidx.appcompat.widget;
|
|
|
|
import android.view.View;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class TooltipCompat {
|
|
public static void setTooltipText(View view, CharSequence charSequence) {
|
|
Api26Impl.setTooltipText(view, charSequence);
|
|
}
|
|
|
|
private TooltipCompat() {
|
|
}
|
|
|
|
/* loaded from: classes.dex */
|
|
static class Api26Impl {
|
|
private Api26Impl() {
|
|
}
|
|
|
|
static void setTooltipText(View view, CharSequence charSequence) {
|
|
view.setTooltipText(charSequence);
|
|
}
|
|
}
|
|
}
|