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

17 lines
511 B
Java

package androidx.core.widget;
import android.content.res.ColorStateList;
import android.graphics.PorterDuff;
import androidx.annotation.Nullable;
public interface TintableCompoundDrawablesView {
@Nullable
ColorStateList getSupportCompoundDrawablesTintList();
@Nullable
PorterDuff.Mode getSupportCompoundDrawablesTintMode();
void setSupportCompoundDrawablesTintList(@Nullable ColorStateList colorStateList);
void setSupportCompoundDrawablesTintMode(@Nullable PorterDuff.Mode mode);
}