Can someone tell me how do the following works: in an application there are something like header with titles. So you can scroll the screen down to see all its information and then throw it to the left and see another screen, like with messages. This functionality of vk.com
3 Answers
Sounds like what you are after is a ListFragment and a Fragment used with a ViewPager. The ViewPager gives you the funcionality of swiping left and right, and the Fragment class is a really good way of implementing things, since they are reusable and can be placed in different activities.