Implementing “Drilldown” navigation in Android App UI

前端 未结 3 467
轻奢々
轻奢々 2021-01-30 15:03

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

3条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-30 15:29

    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.

提交回复
热议问题