ericaddison / APT_miniProject_Android

The Android App for Connexus
0 stars 0 forks source link

View A Stream activity does not "refresh" after redirect from upload activity. #27

Open mspagon opened 6 years ago

mspagon commented 6 years ago

The upload activity now redirects to view a stream activity by:

Intent intent = new Intent(this, ViewAStreamActivity.class);
intent.putExtra("streamID", Long.parseLong(streamID));
startActivity(intent);

But the new image is not there until we somehow refresh it by going to view all streams and back again.