---
title: "When does onResume() method call?"  
description: "When does onResume() method call?"  
author: "Additri Acharya"  
published: 2018-01-21  
canonical: https://answers.mindstick.com/qa/33358/when-does-onresume-method-call  
category: "technology"  
tags: ["android"]  
reading_time: 1 minute  

---

# When does onResume() method call?

When does onResume() [method](https://www.mindstick.com/articles/23411/the-most-effective-method-to-find-the-perfect-small-business-phone-system-for-your-business) call?

## Answers

### Answer by Prateek sharma

this method is the activity lifecycle method which is called when the activity **restarts**.

**onResume()** method is called after the onPause() method. Suppose you move your application in the background for any reason, your activity calls the onPause() method now your activity is in the **background** with no user interaction, when you move your application in the **foreground** or when a user starts the interaction againonResume() method is called and you activity starts working again.


---

Original Source: https://answers.mindstick.com/qa/33358/when-does-onresume-method-call

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
