您好,登錄后才能下訂單哦!
可以通過設(shè)置EditText的文本大小為自適應(yīng)內(nèi)容來讓EditText根據(jù)內(nèi)容自動(dòng)調(diào)整文本大小??梢允褂靡韵麓a實(shí)現(xiàn):
EditText editText = findViewById(R.id.editText);
editText.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
}
@Override
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
}
@Override
public void afterTextChanged(Editable editable) {
// 設(shè)置EditText的文本大小為自適應(yīng)內(nèi)容
editText.setTextSize(TypedValue.COMPLEX_UNIT_SP, calculateTextSize(editText.getText().toString(), editText.getWidth(), editText.getPaint()));
}
});
private float calculateTextSize(String text, int width, Paint paint) {
float textSize = 100;
Rect bounds = new Rect();
paint.setTextSize(textSize);
paint.getTextBounds(text, 0, text.length(), bounds);
while (bounds.width() > width) {
textSize--;
paint.setTextSize(textSize);
paint.getTextBounds(text, 0, text.length(), bounds);
}
return textSize;
}
以上代碼通過監(jiān)聽EditText文本內(nèi)容變化,并在內(nèi)容變化后根據(jù)內(nèi)容的寬度和Paint來計(jì)算適合的文本大小,然后設(shè)置給EditText。這樣就可以實(shí)現(xiàn)EditText的文本大小自適應(yīng)內(nèi)容。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。