I have a multiscreen app that is up and running and you can press four buttons.One to list phone numbers one to list dinning halls one to list residence halls and one for academic buildings.

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.
I don’t understand your question very well.
You need different
Activities. Each one will be your new “screen”.You use each of those buttons to call each
ActivityusingIntentobjects.Inside each activity you place a
ListViewcomponent. ThisListViewobject will “list” (hence the name) multiple values.This is an overview of Android (simplification). You don’t seem to know much about Android fundamentals in general, so my advice is to research each of the above components using Google and the Android Dev Guide. And, of course, StackOverflow.
As I said, create a “page” (
Activity) with aListViewinside it. To populate the ListView with values (your phone numbers), see this guide (see ‘List Views’ in the middle of the page). To work with the item that the user selected in the list, provide theonListItemClick(ListView parent, View v, int position, long id).The guide above shows how to do that.