我是Android新手,我尝试将SQLite与Active Android ORM结合使用。我有一个简单的待办事项应用程序,我按照教程设置活动的android。但是,它并没有告诉您实际放置模型文件的位置。
https://github.com/pardom/ActiveAndroid/wiki/Getting-started
我相信我的AndroidManifest.xml设置正确,我不知道将课程放在实际设置模型的位置。这个片段在教程中提供,但我不知道它在哪里
public class MyApplication extends SomeLibraryApplication {
@Override
public void onCreate() {
super.onCreate();
ActiveAndroid.initialize(this);
}
}
另外,我在app / java / com.blahblah中创建一个新文件并在那里声明我的表吗?
任何关于如何构建这个问题的帮助都是适用的
答案 0 :(得分:1)
真的很简单。添加完应用程序类后,请务必将其添加到清单中:
<application ***android:name=".MyApplication"*** android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" >
确保将任何模型类添加到清单中。以下是我的清单如何寻找上述结构:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.dbtest" > <application android:name=".MyApplication" android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name=".MainActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <!-- Set a name for your database --> <meta-data android:name="AA_DB_NAME" android:value="SomeDatabaseName.db" /> <meta-data android:name="AA_DB_VERSION" android:value="5" /> <!-- All of your models (tables) go here, separated by coma --> <meta-data android:name="AA_MODELS" android:value="com.example.dbtest.models.Item, com.example.dbtest.models.Category" /> </application> </manifest>
我认为这就是它的全部。