Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Development : Getting data from the web

Tags:

java

android

I am beginner in Android development and I am trying to make an app that will simply display the posts on the following website http://www.montgomeryschoolsmd.org/schools/lakelandsparkms/. I need to know how can I display the data from the web into my android app. An example would be appreciated.

like image 623
user2537602 Avatar asked Dec 27 '22 01:12

user2537602


1 Answers

The easiest way to display posts into an Android application will be to use JSON data on the web, and read it into a Master Detail Android application.

On the website side, getting the data to display in JSON seems to be the most difficult part of your problem. It would be easy if it was a Wordpress site, as there are plugins that will do this for you.

On the application side, getting the data and parsing it into a master detail flow is a fairly trivial task.

Something like this tutorial may help: http://www.technotalkative.com/android-json-parsing/ or this video https://www.youtube.com/watch?v=0TulTqQM0Cc

like image 135
EGHDK Avatar answered Jan 10 '23 05:01

EGHDK