sudo
sudo

Reputation: 1525

can i put button and textbox and listview in one activity?

I am new to android and now i am developing client side application in android. I want to know can I put button , textbox and listview in an activity class.Usually we extends class from Activity but for listview extends from ListActivity.

thanks

Upvotes: 0

Views: 430

Answers (1)

mah
mah

Reputation: 39807

The ListActivity class is convenient when you want a single ListView to consume the screen, however a ListView does not require a ListActivity. You can place the ListView within your layout.xml and use it there as well.

Upvotes: 0

Related Questions