如何访问android中的报警接收器活动的共享首选项和数据库

时间:2011-11-10 11:17:58

标签: android sharedpreferences alarmmanager

我想访问警报接收器活动和数据库的共享首选项。是否可以在警报接收器活动中与DB交互? 请帮忙。 提前谢谢。

1 个答案:

答案 0 :(得分:1)

是的,您也可以访问警报接收器活动和数据库的共享首选项。以下是示例代码

public class AlarmSet extends BroadcastReceiver
{
    DBAdapter db;
  Context ct;
@Override
    public void onReceive(Context context, Intent intent)
    {
        ct=context;

              db= new DBAdapter(ct);
              db.open();
                //do your stuff here
           }


}