-1

I'm new to android app developing. I have a MySQL database online and I want do create an app that show some information that are on this database. I don't know Java.

Which is the best way to do this? Learning Java, creating a PHP webpage and show it on the app screen, ...?

Zair Henrique
  • 610
  • 1
  • 6
  • 20
  • 1
    possible duplicate of [How to connect Android app to MySQL database?](http://stackoverflow.com/questions/15732853/how-to-connect-android-app-to-mysql-database) – delrocco Jul 13 '14 at 05:29
  • It sounds like you are have design questions. Perhaps you should try on [Programmers Stack Exchange](http://programmers.stackexchange.com/). Design and architecture is on-topic according to their [Help Center](https://programmers.stackexchange.com/help/on-topic). – jww Jul 13 '14 at 06:59

2 Answers2

0

I worked on my app with RESTful access its very easy and efficient. But in my case i was working with JCR and sling. You don't need to know java to use this.

Subhajit
  • 361
  • 1
  • 4
  • 18
0

"best" is highly subjective. I personally would recommend learning Java, since the SDKs and all the example code are written in it. Also, with Cordova, you are writing javascript anyway, so why not just make the leap to Java.

Here is a tutorial with PHP, MySQL and Java Android app connecting to it:
http://www.androidhive.info/2012/05/how-to-connect-android-with-php-mysql/

delrocco
  • 495
  • 1
  • 4
  • 23