当前位置: 首页>>代码示例>>Java>>正文


Java TextView.getMaxLines方法代码示例

本文整理汇总了Java中android.widget.TextView.getMaxLines方法的典型用法代码示例。如果您正苦于以下问题:Java TextView.getMaxLines方法的具体用法?Java TextView.getMaxLines怎么用?Java TextView.getMaxLines使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在android.widget.TextView的用法示例。


在下文中一共展示了TextView.getMaxLines方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getMaxLines

import android.widget.TextView; //导入方法依赖的package包/类
private static int getMaxLines(TextView view) {
    int maxLines = -1; // No limit (Integer.MAX_VALUE also means no limit)

    TransformationMethod method = view.getTransformationMethod();
    if (method != null && method instanceof SingleLineTransformationMethod) {
        maxLines = 1;
    } else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
        // setMaxLines() and getMaxLines() are only available on android-16+
        maxLines = view.getMaxLines();
    }

    return maxLines;
}
 
开发者ID:victorminerva,项目名称:AutoResizeEditText,代码行数:14,代码来源:AutofitHelper.java

示例2: getMaxLines

import android.widget.TextView; //导入方法依赖的package包/类
private static int getMaxLines(TextView view) {
    int maxLines = -1; // No limit (Integer.MAX_VALUE also means no limit)

    TransformationMethod method = view.getTransformationMethod();
    if (method != null && method instanceof SingleLineTransformationMethod) {
        maxLines = 1;
    }
    else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
        // setMaxLines() and getMaxLines() are only available on android-16+
        maxLines = view.getMaxLines();
    }

    return maxLines;
}
 
开发者ID:alibaba,项目名称:LuaViewPlayground,代码行数:15,代码来源:AutofitHelper.java

示例3: getMaxLines

import android.widget.TextView; //导入方法依赖的package包/类
static int getMaxLines(TextView textView) {
    return textView.getMaxLines();
}
 
开发者ID:JackChan1999,项目名称:boohee_v5.6,代码行数:4,代码来源:TextViewCompatJb.java


注:本文中的android.widget.TextView.getMaxLines方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。