如何创建SQLiteDatabase并使用它来填充微调器?

时间:2014-01-10 13:08:50

标签: java android database sqlite spinner

我正在尝试创建一个单元转换应用程序,到目前为止,我已经在string.xml文件中创建了单元区域的数组,如下所示:

    <string-array name="weight_name_array">
        <item>Gram</item>
        <item>Pound</item>
        <item>Ounce</item>
    </string-array>
    <string-array name="weight_value_array">
        <item>1.0</item>
        <item>453.59237</item>
        <item>28.3495</item>
    </string-array>

我想用一个由两个表WeightLength组成的SQLiteDatabase来替换它,但是我对使用SQLiteDB很新,我试图寻找指导,但不能似乎明白如何继续。

我要做的是在每个表中有两列unitNameunitValue,然后我希望unitName显示在微调器中。任何帮助表示赞赏。

2 个答案:

答案 0 :(得分:1)

首先,您可能最好将其保留在XML值中。 没有数字被改变。 数据库是为了保持存储更改或添加数据,而不是真正用于永远不会改变的静态数据。

除此之外,还有大量关于如何在Android中使用SQLite数据库的正确教程,因为它是一个基本的核心功能。

尝试Vogella.com,只需点击那里没有找到的内容。

答案 1 :(得分:0)

在Youtube上关注此内容,以便更好地理解:http://www.youtube.com/watch?v=OUoGnvz_Yw4以及Youtube上的其他可用教程。除此之外,您还可以注意 - http://www.vogella.com/tutorials/AndroidSQLite/article.html

作为教程的一部分,我在我的一个要求中使用了SQLiteDatabase。它创建了表,插入以及升级方法供您参考。我相信它会对你有所帮助

StatusData.Java

import winterwell.jtwitter.Status;
import android.content.ContentValues;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteDatabase.CursorFactory;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;

@SuppressWarnings("unused")
public class StatusData {
    static final String TAG = "StatusData";
    public static final String DB_NAME = "timeline.db";
    public static final int DB_VERSION = 1;
    public static final String TABLE = "status";
    public static final String C_ID = "_id";
    public static final String C_CREATED_AT = "created_at";
    public static final String C_USER = "user_name";
    public static final String C_TEXT = "status_text";

    Context context;
    DbHelper dbHelper;
    SQLiteDatabase db;

    public StatusData(Context context) {
        this.context = context;
        dbHelper = new DbHelper();
    }

    public void insert(Status status) {
        db = dbHelper.getWritableDatabase();
        ContentValues values = new ContentValues();

        values.put(C_ID, status.id.toString());
        values.put(C_CREATED_AT, status.createdAt.getTime());
        values.put(C_USER, status.user.name);
        values.put(C_TEXT, status.text);
        db.insert(TABLE, null, values);
        db.insertWithOnConflict(TABLE, null, values,
                SQLiteDatabase.CONFLICT_IGNORE);
    }

    class DbHelper extends SQLiteOpenHelper {

        public DbHelper() {
            super(context, DB_NAME, null, DB_VERSION);
        }

        @Override
        public void onCreate(SQLiteDatabase db) {
            String sql = String.format("Create Table : %s "
                    + "(%s int Primary Key,  " + "%s int, %s text, %s text)",
                    TABLE, C_ID, C_CREATED_AT, C_USER, C_TEXT);
            Log.d(TAG, "Oncreate with SQL : " + sql);
            db.execSQL(sql);
        }

        @Override
        public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
            // Usually ALTER the TABLE
            db.execSQL("drop if exists  " + TABLE);
            onCreate(db);
        }

    }