ฉันต้องการตั้งค่าmaxLength
คุณสมบัติของโปรแกรมTextView
โดยที่ฉันไม่ต้องการให้รหัสในเค้าโครง ฉันไม่สามารถเห็นใด ๆวิธีการที่เกี่ยวข้องกับการset
maxLength
ใครช่วยแนะนำฉันให้บรรลุถึงสิ่งนี้ได้บ้าง
ฉันต้องการตั้งค่าmaxLength
คุณสมบัติของโปรแกรมTextView
โดยที่ฉันไม่ต้องการให้รหัสในเค้าโครง ฉันไม่สามารถเห็นใด ๆวิธีการที่เกี่ยวข้องกับการset
maxLength
ใครช่วยแนะนำฉันให้บรรลุถึงสิ่งนี้ได้บ้าง
คำตอบ:
ควรเป็นอะไรแบบนั้น แต่ไม่เคยใช้เป็น textview เพียง edittext:
TextView tv = new TextView(this);
int maxLength = 10;
InputFilter[] fArray = new InputFilter[1];
fArray[0] = new InputFilter.LengthFilter(maxLength);
tv.setFilters(fArray);
editText.filters = arrayOf(*editText.filters, InputFilter.LengthFilter(10))
เก็บตัวกรองเก่าด้วย kotlin
ลองสิ่งนี้
int maxLengthofEditText = 4;
editText.setFilters(new InputFilter[] {new InputFilter.LengthFilter(maxLengthofEditText)});
วิธีจำกัด การแก้ไขอักขระของข้อความอย่างง่าย :
EditText ed=(EditText)findViewById(R.id.edittxt);
ed.setFilters(new InputFilter[]{new InputFilter.LengthFilter(15)});
สำหรับคนที่คุณใช้ Kotlin
fun EditText.limitLength(maxLength: Int) {
filters = arrayOf(InputFilter.LengthFilter(maxLength))
}
จากนั้นคุณสามารถใช้ editText.limitLength (10) ง่ายๆ
ดังที่João Carlosกล่าวในการใช้ Kotlin:
editText.filters += InputFilter.LengthFilter(10)
ดูที่https://stackoverflow.com/a/58372842/2914140เกี่ยวกับอุปกรณ์บางอย่างที่มีพฤติกรรมแปลก ๆ
(เพิ่มandroid:inputType="textNoSuggestions"
ของคุณEditText
)
LengthFilter(10)
) ก่อนแล้วจึงเพิ่มอันใหม่ ( LengthFilter(20)
)
สำหรับ 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))
ฉันสร้างฟังก์ชันเสริมอย่างง่ายสำหรับอันนี้
/**
* 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)
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);
ทางออกที่ดีที่สุดที่ฉันพบ
textView.setText(text.substring(0,10));
EditText
แต่ตัดข้อความหลังสัญลักษณ์ที่ 10 (ครั้งเดียว)
ในการคงตัวกรองข้อมูลดั้งเดิมเอาไว้คุณสามารถทำได้ด้วยวิธีนี้:
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);