30 lines
923 B
Java
30 lines
923 B
Java
|
package o;
|
||
|
|
||
|
import android.content.Context;
|
||
|
import android.graphics.Rect;
|
||
|
import android.text.method.TransformationMethod;
|
||
|
import android.view.View;
|
||
|
import java.util.Locale;
|
||
|
|
||
|
/* renamed from: o.bPV, reason: case insensitive filesystem */
|
||
|
/* loaded from: classes.dex */
|
||
|
public final class C4077bPV implements TransformationMethod {
|
||
|
private Locale c;
|
||
|
|
||
|
@Override // android.text.method.TransformationMethod
|
||
|
public final void onFocusChanged(View view, CharSequence charSequence, boolean z, int i, Rect rect) {
|
||
|
}
|
||
|
|
||
|
public C4077bPV(Context context) {
|
||
|
this.c = context.getResources().getConfiguration().locale;
|
||
|
}
|
||
|
|
||
|
@Override // android.text.method.TransformationMethod
|
||
|
public final CharSequence getTransformation(CharSequence charSequence, View view) {
|
||
|
if (charSequence != null) {
|
||
|
return charSequence.toString().toUpperCase(this.c);
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
}
|