I don't need to pass any data, just tell it to refresh. I'm currently doing something like:
Activity a = MyActivity.getSingleton();
if (a != null) {
a.refreshUI();
}
Is this OK, or do I need to use a bound service, intent, etc. for some reason?
This blog is all about Android development and problems\solutions
I don't need to pass any data, just tell it to refresh. I'm currently doing something like:
Activity a = MyActivity.getSingleton();
if (a != null) {
a.refreshUI();
}
Is this OK, or do I need to use a bound service, intent, etc. for some reason?
0 comments:
Post a Comment