美好的一天,对不起我的英语不好我正在使用谷歌翻译,我是使用 greendao 的新手,我已经阅读了许多内部教程,并且都展示了如何在活动中运行它的示例,即也获取 DaoSession :
DaoSession daoSession = ((App) getApplication()).getDaoSession();
我的问题是,如何在项目库中获取 DaoSession?由于我不能调用getApplication()
感谢您的帮助
我的解决方案虽然不是非常理想,但并不依赖于应用程序,因为 android 应用程序只能在运行库的主应用程序的清单中声明一个应用程序类。所以我决定用单例模式创建一个类,并在必要时从那里调用 DaoSession。我留下代码以防它为他们服务,或者他们可以改进它。
这是课
public class DaoHelper {
private static volatile DaoHelper daoInstance;
private DaoSession daoSession;
private DaoHelper(Context context){
//Prevent form the reflection api
if(daoInstance!=null){
throw new RuntimeException("Use getInstance() method to get the single instance of this class.");
}else{
CustomDaoMaster.OpenHelper helper = new CustomDaoMaster.OpenHelper(context,
"db",null);
SQLiteDatabase db = helper.getWritableDatabase();
CustomDaoMaster daoMaster = new CustomDaoMaster(db);
daoSession = daoMaster.newSession();
}
}
public static DaoHelper getInstance(Context context){
//Double check locking pattern
if(daoInstance==null){
synchronized (DaoHelper.class){//Check for the second time.
//if there is no instance available... create new one
if(daoInstance==null)daoInstance = new DaoHelper(context);
}
}
return daoInstance;
}
public DaoSession getDaoSession(){
return daoSession;
}
}
这是一种使用它的方法
DaoSession daoSession = DaoHelper.getInstance(context).getDaoSession();