We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This code is repeated at several places:
Intent viewTaskIntent = new Intent(Intent.ACTION_VIEW); viewTaskIntent.setData(mSelectedTaskUri); startActivity(viewTaskIntent);
Make it like this:
new BasicTaskDetailsUi(mSelectedTaskUri).show(this);
(Note: this comes out the #469 changeset)
The text was updated successfully, but these errors were encountered:
Extract and re-use details screen starting code. #589
9ddbdd0
980c57a
lemonboston
No branches or pull requests
This code is repeated at several places:
Make it like this:
(Note: this comes out the #469 changeset)
The text was updated successfully, but these errors were encountered: