/**
* 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;
}
AVTextView.java 文件源码
java
阅读 130
收藏 0
点赞 0
评论 0
项目:AVTextView
作者:
评论列表
文章目录