44 lines
1.6 KiB
Java
44 lines
1.6 KiB
Java
|
package com.google.android.material.theme;
|
||
|
|
||
|
import android.content.Context;
|
||
|
import android.util.AttributeSet;
|
||
|
import androidx.appcompat.widget.AppCompatAutoCompleteTextView;
|
||
|
import androidx.appcompat.widget.AppCompatButton;
|
||
|
import androidx.appcompat.widget.AppCompatCheckBox;
|
||
|
import androidx.appcompat.widget.AppCompatRadioButton;
|
||
|
import androidx.appcompat.widget.AppCompatTextView;
|
||
|
import com.google.android.material.button.MaterialButton;
|
||
|
import com.google.android.material.checkbox.MaterialCheckBox;
|
||
|
import com.google.android.material.radiobutton.MaterialRadioButton;
|
||
|
import com.google.android.material.textfield.MaterialAutoCompleteTextView;
|
||
|
import com.google.android.material.textview.MaterialTextView;
|
||
|
import o.NOK;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public class MaterialComponentsViewInflater extends NOK {
|
||
|
@Override // o.NOK
|
||
|
public AppCompatButton ML_(Context context, AttributeSet attributeSet) {
|
||
|
return new MaterialButton(context, attributeSet);
|
||
|
}
|
||
|
|
||
|
@Override // o.NOK
|
||
|
public AppCompatCheckBox MM_(Context context, AttributeSet attributeSet) {
|
||
|
return new MaterialCheckBox(context, attributeSet);
|
||
|
}
|
||
|
|
||
|
@Override // o.NOK
|
||
|
public AppCompatRadioButton MN_(Context context, AttributeSet attributeSet) {
|
||
|
return new MaterialRadioButton(context, attributeSet);
|
||
|
}
|
||
|
|
||
|
@Override // o.NOK
|
||
|
public AppCompatTextView MO_(Context context, AttributeSet attributeSet) {
|
||
|
return new MaterialTextView(context, attributeSet);
|
||
|
}
|
||
|
|
||
|
@Override // o.NOK
|
||
|
public AppCompatAutoCompleteTextView MK_(Context context, AttributeSet attributeSet) {
|
||
|
return new MaterialAutoCompleteTextView(context, attributeSet);
|
||
|
}
|
||
|
}
|