SQlite admin for android
I'm the author of SQLiteManager And i want开发者_JAVA技巧 to code same application for android. In your opinion, what language should I use? Thanks
That's easy ;)
Java, since it is the only option.
(Well, there is the possibility to use the Android NDK, but Java should still be you tool of choice).
And you should keep in mind, that you don't have permission to access databases from other applications, since on android every app lives in it's own sandbox. Sharing data on an android device is done via Content Providers http://developer.android.com/guide/topics/providers/content-providers.html
精彩评论