public class

AllCapsTransformationMethod

extends java.lang.Object

 java.lang.Object

↳androidx.appcompat.text.AllCapsTransformationMethod

Gradle dependencies

compile group: 'androidx.appcompat', name: 'appcompat', version: '1.6.0-alpha04'

  • groupId: androidx.appcompat
  • artifactId: appcompat
  • version: 1.6.0-alpha04

Artifact androidx.appcompat:appcompat:1.6.0-alpha04 it located at Google repository (https://maven.google.com/)

Androidx artifact mapping:

androidx.appcompat:appcompat com.android.support:appcompat-v7

Androidx class mapping:

androidx.appcompat.text.AllCapsTransformationMethod android.support.v7.text.AllCapsTransformationMethod

Summary

Constructors
publicAllCapsTransformationMethod(Context context)

Methods
public java.lang.CharSequencegetTransformation(java.lang.CharSequence source, View view)

public voidonFocusChanged(View view, java.lang.CharSequence sourceText, boolean focused, int direction, Rect previouslyFocusedRect)

from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructors

public AllCapsTransformationMethod(Context context)

Methods

public java.lang.CharSequence getTransformation(java.lang.CharSequence source, View view)

public void onFocusChanged(View view, java.lang.CharSequence sourceText, boolean focused, int direction, Rect previouslyFocusedRect)

Source

/*
 * Copyright (C) 2014 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package androidx.appcompat.text;

import static androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX;

import android.content.Context;
import android.graphics.Rect;
import android.text.method.TransformationMethod;
import android.view.View;

import androidx.annotation.RestrictTo;

import java.util.Locale;

/**
 * @hide
 */
@RestrictTo(LIBRARY_GROUP_PREFIX)
public class AllCapsTransformationMethod implements TransformationMethod {
    private Locale mLocale;

    public AllCapsTransformationMethod(Context context) {
        mLocale = context.getResources().getConfiguration().locale;
    }

    @Override
    public CharSequence getTransformation(CharSequence source, View view) {
        return source != null ? source.toString().toUpperCase(mLocale) : null;
    }

    @Override
    public void onFocusChanged(View view, CharSequence sourceText, boolean focused,
            int direction, Rect previouslyFocusedRect) {
    }
}