如何插入Sqlite DB甚至应用程序从最近的历史中杀死?

时间:2016-06-24 15:28:39

标签: android sqlite

可能是我的问题标题不能描述我的实际问题。我将尝试详细解释我的问题。

  1. 我正在写' XXX'我正在使用的应用程序' YYY' android库项目。
  2. ' YYY' android库项目将在其中一个回拨中提供不同的回拨我会收到' abc'宾语。
  3. 现在我正按照我的要求处理对象并存储SQlite DB。
  4. 如果我的应用程序正在运行(前置/最近的应用程序历史记录),整个过程将完美运行。但我的要求它应该工作,甚至应用程序没有运行。

    任何人都可以提出建议我如何实现这一目标。

    提前致谢。

    示例代码段:

    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;
        }
    
    }
    

0 个答案:

没有答案