ActiveAndroid 设置

ActiveAndroid setup

我是 Android 的新手,我正在尝试将 SQLite 与 Active Android ORM 结合使用。我有一个简单的待办事项应用程序,我正在按照教程设置活动 android。但是,它不会告诉您实际放置模型文件的位置。

https://github.com/pardom/ActiveAndroid/wiki/Getting-started

我相信我的 AndroidManifest.xml 设置正确,但我不知道将 class 放在您实际设置模型的位置。教程中提供了这个片段,但我不知道它在哪里

public class MyApplication extends SomeLibraryApplication {
    @Override
    public void onCreate() {
        super.onCreate();
        ActiveAndroid.initialize(this);
    }
}

此外,我是否在 app/java/com.blahblah 中创建一个新文件并在那里声明我的表?

任何关于如何构建它的帮助都将被应用

真的很简单。添加应用程序后 class,确保将其添加到清单中:

<application
    ***android:name=".MyApplication"***
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >

至于你把模型放在哪里,其实并不重要。您可以具有以下结构:

只需确保将您的任何模型 class 添加到清单中即可。以下是我的清单如何查找上述结构:

<?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>

我想就这些了。