内部SDにDBを保存するとツール等使って直接参照できません。
てっ事で、外部SDに保存する方法が以下です。
あっ、OSのバージョンよっては出来ないのもあるのかな?
4.X 系はOK

public class DatabaseHelper extends SQLiteOpenHelper {
    private final static int DB_VERSION  = 1;
    public final static String DB_NAME = "mydb.db";

    public DatabaseHelper(Context context) {
        super(context, 

            Environment.getExternalStorageDirectory().getAbsolutePath() + "/hogehoge/" + DB_NAME, 
            null, 
            DB_VERSION);
    }

}

Leave a Reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)

© 2024 Falco Tech Blog Suffusion theme by Sayontan Sinha