开发者

Identifying explicit intent purpose in Android, or building seperate activities?

开发者 https://www.devze.com 2023-03-20 21:34 出处:网络
This may be in the RTFM category but I can’t seem to figure out the proper way to do this. One of my activities shows some random data from a database, it uses some use开发者_如何学编程r-defined sear

This may be in the RTFM category but I can’t seem to figure out the proper way to do this. One of my activities shows some random data from a database, it uses some use开发者_如何学编程r-defined search-criteria from a previous activity to filter out which data blocks to search from. But it’s main purpose is to display the data, and present the user with a UI to manipulate the data to his will.

The user can also bookmark this random data, and then access it later again (the bookmarks show up in a listview in another activity). Rather than creating a whole new activity with basically the same purpose, I want to reuse the one already created, and just tell it that I want to view some data, rather than search for some new. So what is the proper way of informing an activity of want you want to do? Should that be defined in the Intent extras bundle or is there another way?

Or would the proper way be to create a new activity for this?


You can extend the first Activity like this:

 ActivityB extends ActivityA

and then the methods that need to be different in ActivityB can @override the methods in ActivityA, but methods that do the same thing, you don't have to dupe as long as they're protected.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号