Вопрос

I want to make a Japanese dictionary application but I have no more experiences about Android programming.

How to create database to store data (such as words, means...). Can you give me some advice to create a database which is the most effective and fastest. (include How to do? Which I need to learn in Android programming)

Thanks you,

Это было полезно?

Решение 2

A couple ideas:

  1. Create a web site or web API that interfaces with a database. Alternatively, find an already existing API from a third party. Then call the API from your app.

  2. Preload all your data into the app from data files that you compile into the APK. This is less desirable if you expect your data to update on a regular basis. Or if your data is somewhat large.

Другие советы

Try Installing an add-on called SQLite Manager in Firefox.

Its fastest and having good GUI

After installing this add-on you can create database very simply and that created database will be .sqlite extension(insertion,deletion& updation is very simple). Paste it in ur project by making a folder name assets & inside it paste the created .sqlite

After that u can start on ur coding part & to learn more about sqlite visit this tutorial

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top