From this answer,https://stackoverflow.com/a/17478535/1727934 ,we could know that,Android doesn't support Virtual Memory.
Then from wikipedia, we could know that:
Paging is an important part of virtual memory implementations
https://en.wikipedia.org/wiki/Paging
But according to the official document,we can see that:
The Android Runtime (ART) and Dalvik virtual machine use paging and memory-mapping (mmapping) to manage memory.
https://developer.android.com/topic/performance/memory-overview.html
I'm confused about this:paging is used for virtual memory,but Android doesn't support virtual memory,so what does this paging means in Android?