How to get multiple pages in Eclipse? [closed]
This is so confusing. I going to need alot more pages in my Android app. But I don't see where I'd do that.... This is what my Eclipse looks like: http://img202.imageshack.us/img202/4227/unled2qir.png
The 'page' in your image is a graphical representation of a 'layout' file for a 'View' although in your case possibly the 'layout' for an Activity
.
To add another, in the 'Package Explorer' pane, right-click your 'GameNetwork' project icon and select New -> Android XML File. Then when the dialog appears, select the 'Layout' radio-button under "What sort of resource would you like to create?" and give it a filename in the "File" edit box such as 'new-layout.xml'.
You need to create a new xml file for each 'page' as you call them.
http://developer.android.com/guide/topics/ui/declaring-layout.html
精彩评论