discord-jadx/app/src/main/java/androidx/core/widget/TintableCheckedTextView.java

19 lines
565 B
Java

package androidx.core.widget;
import android.content.res.ColorStateList;
import android.graphics.PorterDuff;
import androidx.annotation.Nullable;
import androidx.annotation.RestrictTo;
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
public interface TintableCheckedTextView {
@Nullable
ColorStateList getSupportCheckMarkTintList();
@Nullable
PorterDuff.Mode getSupportCheckMarkTintMode();
void setSupportCheckMarkTintList(@Nullable ColorStateList colorStateList);
void setSupportCheckMarkTintMode(@Nullable PorterDuff.Mode mode);
}