- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
29 lines
737 B
Java
29 lines
737 B
Java
package androidx.appcompat.widget;
|
|
|
|
import android.view.View;
|
|
import androidx.annotation.DoNotInline;
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
import androidx.annotation.RequiresApi;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class TooltipCompat {
|
|
public static void setTooltipText(@NonNull View view, @Nullable CharSequence charSequence) {
|
|
Api26Impl.setTooltipText(view, charSequence);
|
|
}
|
|
|
|
private TooltipCompat() {
|
|
}
|
|
|
|
@RequiresApi(26)
|
|
public static class Api26Impl {
|
|
private Api26Impl() {
|
|
}
|
|
|
|
@DoNotInline
|
|
public static void setTooltipText(View view, CharSequence charSequence) {
|
|
view.setTooltipText(charSequence);
|
|
}
|
|
}
|
|
}
|