Android Android application with standalone database

I want to develop an English-language application for Android that uses only a standalone database. Under this, I want to say that it does not need to be redirected to an online dictionary, such as WordWeb or the like. Does anyone know what to do to keep my words? I am thinking about using SQLite from mobile. But if someone here has already done or done what I want to do, can you give me some expert suggestions?

+5
source share
6 answers

SQLite, , , Android. , . , db .

, , Trie, : http://en.wikipedia.org/wiki/Trie#Dictionary_representation. , , , , , SQLite .

+1

:

https://play.google.com/store/apps/developer?id=e-Biene%20DEV&hl=en

, tblLanguage1 [, ] tblLanguage2 [, ]

to ( SQLite [ ], SQLite db - -).

.

: , : :

lang1_Content lang1_segments lang1_segdir

.

+1

API Google, , Dictionary. , . - , XML- JAVA SQLite. , XML . .

http://developer.android.com/tools/samples/index.html , , .

0

, , .

, Android , :

SharedPreferences , SQLite

assets, .

android-samples, , .

0

The best approach is that: keep your data in files in a json file and save it on the Internet, or you can also improve it on googledrive or dropbox and make it public, and then when the user opens the application for the first time, download json files and paste the data from json into sql lite db. This way you can use sql lite for offline data.

0
source

All Articles