I am trying to learn how to do stuff in Android, and I\'m not sure of the best way to build the interface.
I\'ve been working on porting an iPhone app, which uses naviga
As already pointed out XML way of doing layouts is most preferred.
basically, someone touches a cell in the table, which drills down to another table. when they touch a cell on that table it drills down to a webview that displays the information.
From what I understood from the term drills down, this may be wat you need
http://developer.android.com/guide/topics/ui/ui-events.html
From official docs
An event listener is an interface in the View class that contains a single callback method. These methods will be called by the Android framework when the View to which the listener has been registered is triggered by user interaction with the item in the UI.