-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Record UI progression is awkward and adds extra Activities to the stack #23
Comments
Part of the problem is:
mListenMoreButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO: quick hack - not the best way to do it
startActivity(new Intent(getApplicationContext(), ClassRegistry.get("RwListenActivity")));
}
}); |
@eosrei perhaps instead of pushing a ListenActivity, maybe we can just pop the activity stack. By calling finish() on the current activity. (Effectively going back.) You could make the icon conditional on whether it was pushed from the MainActivity or the ListenActivity. |
I noticed the handling a back at the Android share dialog sends the user back to the choice webview, but with the selections unfunctional! Add something to catch that. As a user I sort of expect the 3 2 1 countdown to begin after the user affirms the re-record alert dialog, but thats minor. |
Has anyone looked at the older code to determine what is different now? I have code for a different app that implements the original code for this app and it doesn't have this issue. I know a ton of changes have happened by several different people, so it seems possible something got wacko in the process. Happy to share this code if you think it might be useful. |
Here's the code from the initial commit (FYI it's the same):
|
Upon investigation I noticed several issues related to this one. I am going to make this the parent issue and track the other serious issues separately. |
I also noticed cosmetic issues:
|
…ixes roundware#48 fixes roundware#49 fixes roundware#50 fixes roundware#51 fixes roundware#52 fixes roundware#55 fixes roundware#56
Matthew Adler created an issue 2014-12-10
The way screens are pushed/popped as well as their transitions are awkward. I'd expect to be returned after indicating my recording. Or is the intention user wants to make multiple recordings?
Halsey Burgund REPO OWNER 2014-12-10
FYI, this is something that didn't happen in older versions of Android RW apps (mainly running on 2.3), so it may be related to 4/5? Or some code may have fundamentally changed recently...not sure. If you think it's possibly the latter, I can get you access to the apps that don't have this issue so you can poke around in the code if that would be useful.
And the intention is NOT that the user would want to make multiple recordings immediately. Users can make multiple recordings by actively pressing the "Record Again" button on the Thank You screen, but there shouldn't be any automatic expectation of multiple recordings.
The text was updated successfully, but these errors were encountered: