When you update an album cover from the tag editor, not only will the album detail screen update, the artist detail screen will when you go back to it too. This uses activity results.

This commit is contained in:
Aidan Follestad 2015-04-19 00:56:45 -05:00
commit f8d9d5106e
3 changed files with 14 additions and 3 deletions

View file

@ -61,7 +61,7 @@ public class NavigationUtil {
@SuppressWarnings("unchecked") ActivityOptionsCompat optionsCompat = ActivityOptionsCompat.makeSceneTransitionAnimation(activity,
sharedViews
);
ActivityCompat.startActivity(activity, intent, optionsCompat.toBundle());
ActivityCompat.startActivityForResult(activity, intent, 1001, optionsCompat.toBundle());
} else {
activity.startActivity(intent);
}