如何从Android应用程序中的wamp服务器数据库连接和检索数据?

I'm using Android Studio to create a job search app:

When users input keywords and press "Find" button, the app will connect to wamp server database to get related data and then display the result in list view. For example, an user type "web developer" and press Find button, job info which is related to web developer will be shown as a list view. How can I do that ? Thank you for your help.

You can make a JSON request for your data and store it localy in sqlite. Then on search, just search the table for the keyword and show the row that have what you want. If you dont know what i am talking abou i recommend you start reading some documents or tutorials.