City-of-Bloomington / open311-android

GeoReporter Android source code. Native Android smartphone client app for Open311 API civic issue reporting.
http://open311.org
Other
31 stars 36 forks source link

does not close android app by pressing back button #63

Closed pritam148 closed 8 years ago

milovanderlinden commented 8 years ago

I get the feeling this is due to the fact that on the MainActivity,

startActivity(intent);

Is blocking access to the startupscreen (with the logo) because it will constantly try to forward into the Services list. Commenting that line (MainActivity.java line:105) will stop this behaviour and will let you exit the application again by pressing the back button.

//startActivity(intent);

This does however mean that a user always needs to click the logo page to get to the services list.

Would that be acceptable?

inghamn commented 8 years ago

Maybe the logo splash screen is not needed.

We were wanting to show the user what city they are currently reporting to. Although, I really don't know how much of a use case that is. I think most versions of this app get recompiled as a single-city version.

milovanderlinden commented 8 years ago

I agree, but currently a gracefull exit of the application is broken. So my question would be, will users be annoyed when they have to click the splash to get into the services list? It is hard for me to tell as I am currently only developing without any real users.