In Android programming, how do I make a spinner change activities?
-
I am fairly new to programming for the Android and am attempting to make a program that will run a series of math applications. Each application requires its own layout and, thus, its own activity. However, I have run into trouble when trying to switch activities. The idea was to have a spinner at the top of every page and the moment the user chose a new math app, the program would switch to the chosen activity. Even if there was a "Go" button as well, it would be fine. Any chance someone could write a really simple example program that just has the main activity and how to make the spinner load a new activity?
-
Answer:
Hmm, I guess you can try to go about it that way, but probably a better idea would be to use a view at the top and load a different subview for each of those. Instead of using activities, restructure when you switch to each item, it removes the subview at the bottom and puts a different sub view on the bottom. The reason I recommend this technique is because if you do not, every time you select something different in the spinner, it will reload the spinner and will not look right at all, at least if I what I am visualizing is correct. You could make a sort of a drawer that you can drag through the top, scroll through the functions, and choose one, but even so, using an activity for that would also mean you would have to fix your back button so you do not have to go through all the past activities to exit. It is possible to use only a handful of activities in a multi screen app, the catch is to be sure to correctly unload your subviews and to load your new views into memory before you switch the subviews around. Remember you can always use a manager view that would emulate adding it to a full activity in your code and alter the manager to take up all the space below the spinner. That is how I would go about doing it. Remember you can extend views like managers to be your own custom classes. You cant stuff them in XML as easily (I dont think), but you can stuff their subviews in an xml and load them. You can probably refactor your application to use this structure pretty quickly.
Reese Pratt at Yahoo! Answers Visit the source
Related Q & A:
- How do I make a python web program that is on a ubuntu server allow access to the server?Best solution by Yahoo! Answers
- How do i make a my yahoo but not a home page?Best solution by Yahoo! Answers
- How do i make a signature for when i send an email?Best solution by Yahoo! Answers
- How can I make a myspace comment into a picture caption?Best solution by Yahoo! Answers
- How can I make this career change - Marketing/Admin to Fine Arts?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.