Can you tell me how I can create a search engine android app,
- I’m confused how to start.
- How to interact with Database
- How to write algorithms in Java where I’ve written my search algorithms in PHP for my website!
Can you tell me how I can create a search engine android app,
Hi,
I think, there is only one right place to direct: https://developer.android.com/training/index.html
If you already have working PHP backend, then it may not be necessary to write the same logic in JAVA. You could simply ask your server for data.
PS: I’m back (I hope)
<off-topic>
Welcome back @megazoid
</off-topic>
This kind of application should be strait forward. As @megazoid mentioned you can keep your php back-end unless there is a problem with that. Then i could suggest alternates such a lucene, sphinx etc… But if you use your back-end already built in php, You might need to extend it abit to support a RESTful api to handle the app requests.(best approach keeps your app footprint light) Then you will need to learn some basic android UI which is pretty strait forward and tools such as android studio make it even easier.(Drag and drop design) After you have the basic UI setup you will need to handle a few events like clicking the submit button etc… This is also really strait forward in android studio. After that you will need to send http requests to your server and get your results in the response and display.
And even easier solution as for the UI is you can use Androids webview and thats basicly a browser which you can then build a good majority of your ui and events in html/css and javascript which could also be a little more familiar.
If those seems to trival of a task you can also use PhoneGap, Cordova etc… and use html/css javascript android app framework.
This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.