AVTextView.java 文件源码

java
阅读 130 收藏 0 点赞 0 评论 0

项目:AVTextView 作者:
/**
 * Method that catch the text transformation (e.g. uppercase tranformation)
 * and return the transformed text
 * @param text the text to be transformed
 * @return transformed text
 */
private String getTranformedText(String text) {
    // Check if text has undergone transformation
    TransformationMethod transformationMethod = getTransformationMethod();
    if (transformationMethod != null) {
        // Get the tranformation
        text = transformationMethod.getTransformation(text, this).toString();
    }

    return text;
}
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号