Is it possible to allow a view to expand when clicked? Right now I am using a linearlayout to keep three different layouts in descending order. When a component is clicked I want the component to expand and take over the screen. How can this be done?
Example:
Before Click
___________
| |
| A |
| |
|___________|
| |
| B |
|___________|
| |
| C |
|___________|
After "C" component is clicked:
___________
| |
| |
| |
| |
| C |
| |
| |
| |
| |
|___________|
A, B, and C are LinearLayouts held in position with weighted values given in the main.xml.
Also, the C is meant to expand upwards using Animations perhaps.