日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

android maxlength 代码设置,如何在代码中获取EditText maxLength设置

發布時間:2024/1/1 编程问答 34 豆豆
生活随笔 收集整理的這篇文章主要介紹了 android maxlength 代码设置,如何在代码中获取EditText maxLength设置 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

如何完成 h2>

在相關的實用程序類中聲明一個靜態方法,接受TextView并返回一個int。

迭代TextView上設置的每個InputFilter,找到一個屬于InputFilter.LengthFilter實施的文件。

使用Reflection訪問,獲取并返回mMax字段的值。

這會給你這樣的東西:

import java.lang.reflect.Field;

// [...]

public static int getMaxLengthForTextView(TextView textView)

{

int maxLength = -1;

for (InputFilter filter : textView.getFilters()) {

if (filter instanceof InputFilter.LengthFilter) {

try {

Field maxLengthField = filter.getClass().getDeclaredField("mMax");

maxLengthField.setAccessible(true);

if (maxLengthField.isAccessible()) {

maxLength = maxLengthField.getInt(filter);

}

} catch (IllegalAccessException e) {

Log.w(filter.getClass().getName(), e);

} catch (IllegalArgumentException e) {

Log.w(filter.getClass().getName(), e);

} catch (NoSuchFieldException e) {

Log.w(filter.getClass().getName(), e);

} // if an Exception is thrown, Log it and return -1

}

}

return maxLength;

}如前所述,如果設置TextView的最大長度的實現發生更改,則會中斷。當方法開始拋出時,您將收到有關此更改的通知。即使這樣,該方法仍然返回-1,您應該將其作為無限長度處理。

總結

以上是生活随笔為你收集整理的android maxlength 代码设置,如何在代码中获取EditText maxLength设置的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。