I recently finished up my very first app on Android and had a pretty basic question that I can't seem to find an answer on. Like with most apps, when one is installed on your phone, it will show up in the Settings -> Applications list. The app I created shows up in the Downloaded section along with other downloaded apps like Facebook and the Google Play store. When one of these apps is selected from this list, two buttons show up at the top - "Force stop" and "Uninstall". Some of the apps on this list have "Force Stop" greyed out (which I'm sure means it has been forced to stop) and other apps will let you click this button.
What I'd like to know is if "Force Stop" is not greyed out and is still clickable, does that mean this is taking some battery life out of my Android device (even if it's a very very small amount) by still doing some kind of process or by taking up resources? I added a finish() method to my new app when a user hits the back button to exit the app but the "Force Stop" button is still clickable. I know Android handles its own stuff and kills apps when it needs to but will my new app be taking some battery life before Android completely kills the app? I'd just like to know for learning purposes and to make sure I don't need to continue to add code to my new app. Thank you.