您好,登錄后才能下訂單哦!
要在Android的EditText中實現文本自動滾動,可以使用以下方法:
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textMultiLine"
android:scrollbars="vertical" />
</ScrollView>
addTextChangedListener
事件監聽器,并在afterTextChanged
方法中實現自動滾動功能。EditText editText = findViewById(R.id.editText);
editText.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
@Override
public void afterTextChanged(Editable s) {
// 自動滾動到最后一行
if (editText.getLayout() != null) {
int scrollAmount = editText.getLayout().getLineTop(editText.getLineCount()) - editText.getHeight();
if (scrollAmount > 0) {
editText.scrollTo(0, scrollAmount);
} else {
editText.scrollTo(0, 0);
}
}
}
});
這樣,當文本內容發生變化時,EditText會自動滾動到最后一行。請注意,這種方法僅適用于多行文本輸入。如果你需要處理單行文本,可以考慮使用HorizontalScrollView
和相應的滾動邏輯。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。