如何在Android TextView中以编程方式设置maxLength?

时间:2010-03-17 11:35:25

标签: android textview maxlength

我想以编程方式设置maxLength的{​​{1}}属性,因为我不想在布局中对其进行硬编码。我看不到与TextView相关的任何set方法。

任何人都可以指导我如何实现这一目标吗?

11 个答案:

答案 0 :(得分:333)

应该是这样的。但从未将它用于textview,只使用edittext:

TextView tv = new TextView(this);
int maxLength = 10;
InputFilter[] fArray = new InputFilter[1];
fArray[0] = new InputFilter.LengthFilter(maxLength);
tv.setFilters(fArray);

答案 1 :(得分:73)

试试这个

int maxLengthofEditText = 4;    
editText.setFilters(new InputFilter[] {new InputFilter.LengthFilter(maxLengthofEditText)});

答案 2 :(得分:14)

简单方法限制编辑文字字符

cannot call setRowData unless using normal model

答案 3 :(得分:7)

对于那些使用Kotlin的人

fun EditText.limitLength(maxLength: Int) {
    filters = arrayOf(InputFilter.LengthFilter(maxLength))
}

然后你可以使用一个简单的editText.limitLength(10)

答案 4 :(得分:3)

对于Kotlin,且无需重置以前的过滤器:

fun TextView.addFilter(filter: InputFilter) {
  filters =
      if (filters.isNullOrEmpty()) {
        arrayOf(filter)
      } else {
        filters
          .toMutableList()
          .apply {
            removeAll { it.javaClass == filter.javaClass }
            add(filter)
          }
          .toTypedArray()
      }
}

textView.addFilter(InputFilter.LengthFilter(10))

答案 5 :(得分:2)

pexpect/pxssh说过,在Kotlin中使用:

editText.filters += InputFilter.LengthFilter(10)

您还可以看到João CarlosZTE Blade A520异常行为。

答案 6 :(得分:1)

我为此做了一个简单的扩展功能

/**
 * maxLength extension function makes a filter that 
 * will constrain edits not to make the length of the text
 * greater than the specified length.
 * 
 * @param max
 */
fun EditText.maxLength(max: Int){
    this.filters = arrayOf<InputFilter>(InputFilter.LengthFilter(max))
}

editText?.maxLength(10)

答案 7 :(得分:0)

     AlertDialog.Builder builder = new AlertDialog.Builder(this);
                    builder.setTitle("Title");


                    final EditText input = new EditText(this);
                    input.setInputType(InputType.TYPE_CLASS_NUMBER);
//for Limit...                    
input.setFilters(new InputFilter[] {new InputFilter.LengthFilter(3)});
                    builder.setView(input);

答案 8 :(得分:0)

我找到的最佳解决方案

textView.setText(text.substring(0,10));

答案 9 :(得分:0)

要保留原始输入过滤器,您可以按照以下方式进行操作:

InputFilter.LengthFilter maxLengthFilter = new InputFilter.LengthFilter(100);
        InputFilter[] origin = contentEt.getFilters();
        InputFilter[] newFilters;
        if (origin != null && origin.length > 0) {
            newFilters = new InputFilter[origin.length + 1];
            System.arraycopy(origin, 0, newFilters, 0, origin.length);
            newFilters[origin.length] = maxLengthFilter;
        } else {
            newFilters = new InputFilter[]{maxLengthFilter};
        }
        contentEt.setFilters(newFilters);

答案 10 :(得分:0)

我的SWIFT 5解决方案

editText.filters = arrayOf<InputFilter>(InputFilter.LengthFilter(123))