My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 11: Return the id of the selected object to the calling application instead of showing a website
3 people starred this issue and may be notified of changes. Back to list
Status:  New
Owner:  ----


 
Reported by thoughtc...@googlemail.com, Apr 10, 2010
When mixare is started with startActivityForResult it should return the id
of the selected object.
Then it is up to the application developer how the selection should be
handled. 
It would provide more freedom for the application developers.

For example:

context.startActivityForResult(intent, 42);


public void onActivityResult(int requestCode, int resultCode, Intent intent) {
    if (requestCode == 42) {
        if (resultCode == RESULT_OK) {
            String id = intent.getStringExtra("SELECTED_OBJECT_ID");
            // Do something with selected object
        } 
    }
}

Powered by Google Project Hosting