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.

Here is what the listview looks like

link|improve this question

75% accept rate
Generally this kind of question would be closed, being considered too broad or one that "does not show research effort". However, you seem to be doing well, designing your app well, and I know how hard things can be when you're not familiar with them, so I prefer to answer your question and also help you here. Be warned, however, that you should generally ask specific questions! – David Nov 11 '11 at 1:12
feedback

1 Answer

up vote 0 down vote accepted

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 Activity using Intent objects.

Inside each activity you place a ListView component. This ListView object 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.


My question is one each page how would I list multiple entries?

For example if i wanted to list 10 phone numbers on that page.

As I said, create a "page" (Activity) with a ListView inside 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 the onListItemClick(ListView parent, View v, int position, long id).

The guide above shows how to do that.

link|improve this answer
umm I already made all the activities and XMLS already and they jump from page to page. The bottom button is a dialer and works and the other bottom button launches the web browser. is there any import statements or anything else that I need to add to that? – BigCAT41 Nov 11 '11 at 20:46
I updated the answer. Now, ask an specific question. What do you want to do exactly. I know your dialer works, I want to know what you want to do. What does NOT work. – David Nov 13 '11 at 14:29
ok so what I want to do is i have separate java pages created for each button. Each one of those pages have content in them. What I want to do is where there is the dining halls I want to list multiple lines of content with out using a text view – BigCAT41 Nov 13 '11 at 18:51
everything works perfectly so far – BigCAT41 Nov 13 '11 at 18:51
"where there is the dining halls I want to list multiple lines of content with out using a text view" --- As I said, use a ListView. What in the ListView implementation you couldn't do? – David Nov 13 '11 at 20:20
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.