What is transcriptMode in Android ListView?

What is transcriptMode for Android ListView?
What is he doing?

This line should ensure that StackOverFlow resolves the issue.

+4
source share
1 answer

From the documentation:

"In transcription mode, the list scrolls down so that new items appear when they are added."

http://developer.android.com/reference/android/widget/AbsListView.html#attr_android:transcriptMode

EDIT: To clarify, the link above is AbsListView, the superclass of ListView where the attribute comes from.

+3
source

Source: https://habr.com/ru/post/1608539/


All Articles