Reputation: 2253
How to I stop my code from running in Android Studio? I have tried selecting the program under the Java folder, but the "Terminate Application" button is grayed out. It's really annoying how the long is going crazy even though I have ended the app on my phone...
Here is a screenshot of my screen if it helps:
Upvotes: 0
Views: 2189
Reputation: 302
If you are referring to the lines in the logcat that keep appearing even when you app is stopped, this is normal, your phone keeps running other apps and logging status messages.
To suppress this output try selecting you application in the drop down menu on the right to show only your app's output
Upvotes: 4
Reputation: 2099
You need to select the process com.mycompany.myfirstapp and then press the Terminate Application button.
Upvotes: 0