Please look at this picture

Basically you swipe your finger down in that area and it shows more.. how can i do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
With
ViewFlipperor (horizontal)ListView, each page/item of theViewFlipper/ListViewwill contain one of these view (I bet they are images). For swiping you canimplement``onTouchListenerorGestureDetector. OverrideonFling()method, and measure the distance between the initial X-coordinate when the user touches the screen and the final x-coordinate when the user releases the touch screen with methodevent1.getX()andevent2.getX().Do not measurethe motion on they-axissince —>(to right, you have motion only on thex-axis). Intialize someMINIMUM_DISTANCEto compare with the result from difference between the first touch and release touch coordinate (event1.getX() - event2.getX()).