16 lines
354 B
Java
16 lines
354 B
Java
package m;
|
|
|
|
import android.os.LocaleList;
|
|
import android.widget.TextView;
|
|
|
|
/* loaded from: classes.dex */
|
|
public abstract class P {
|
|
public static LocaleList a(String str) {
|
|
return LocaleList.forLanguageTags(str);
|
|
}
|
|
|
|
public static void b(TextView textView, LocaleList localeList) {
|
|
textView.setTextLocales(localeList);
|
|
}
|
|
}
|