可能是我的问题标题不能描述我的实际问题。我将尝试详细解释我的问题。
如果我的应用程序正在运行(前置/最近的应用程序历史记录),整个过程将完美运行。但我的要求它应该工作,甚至应用程序没有运行。
任何人都可以提出建议我如何实现这一目标。
提前致谢。
示例代码段:
public class XXX AppCompatActivity implements YYYClass.SomeListener{
onCreate(){...}
.
.
.
@Override
public Object customCallback1(Object abc){
//Database insertion happen here
//this part is working only app is in foreground / background(app recent history)
//I know that, this DB insertion won't work once the app got killed because this I am not doing any service.
// If I want send this object to service class how can pass(I want
this should happen even app killed)
return null;
}
}