Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 months ago.
Improve this question
gfg web
gfg app
Hey,
Here are the two images from the geeksforgeeks website and geeksforgeeks application, notice that they both have the same content, Now question is that how they uses the webpages content in his application, Is they save there articles content in the database and then fetch for both website and android application ? or they are using something else.
thanks in Advanced...
They aren't parsing html in textview or something, rather they have a server, and they make request, and they get response to the request (probably in form of JSON) and they have some fragment or activity with specific set of elements and they just parse JSON and extract content.
And again, there are MANY ways to do this, but am pretty sure they aren't just parsing HTML to textview or something. You can search and implement popular architecture in your app.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I want to create a server that can be between among a few thousand people and can play there 1v1. like quiz up app
I've read Android documents but it does not seem to explain it.
Building Apps with Connectivity & the Cloud
I'm so confused about the servers and all kind of this
need Help!
i will mark this correct for those who can answer thanks
John
For creating server you have to use any backend language like PHP will be very comfortable for beginners.
You can refer php MySQL connection with Android using volley or any Http connection in Android.
You can refer to www.androidhive.com and search for above for better understanding.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
I'm creating an app which has a list with content (Images, text...) which is going to come from the Internet (my website) . I want to be able to update and add / edit content easily.
I'm thinking about using WordPress as the backend, and then use a HTML parser such as jSoup to get the text / images etc. from the WordPress site and put it into the list & wherever I need it in the app. I could easily add / update / delete content, plus it is also accessible in a normal browser.
Good idea ?(why? / why not?) Anyone ever tried it? Possible alternatives?
There are plugins available to create a REST API from your WordPress site, like this one: https://wordpress.org/plugins/json-rest-api/. I think that might be useful!
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
So i need to update information in my app. Currently the info is in a strings.xml file.
My plan is to download the array of strings and save them locally and display it in relevant places.
What i am stuck with is:
I don't know how to get the array from the web. Should it be in a .txt file? I have 10 or so Arrays(each containing about 20 elements), will the method i thought of be good for this?
I´d say a common approach would be open a HttpUrlConnection, make a Http Get request, buffer response in Stream and parse as JSON Array. Example
Then you can access the datafields of the JSONArray/Object. Would require that your Webservice responses with your array json encoded.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to download telugu news paper from my application and after download that one i have read in off line mode that one. how to implement that one please help me.
Thanku
You need to find websites that provide free RSS feeds for Telgu news.
Then you need to write a parser of your choice in your app for parsing data from those RSS feeds.
Save the parsed data in a File and save it on your device(Internal/SD Card).
Also there will be images associated with the news item, so also save them.
Implement your UI as you like.
Finally render your news items from your device i.e. in Offline mode.
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I have a wordpress website that I want to create into a native app for Android. What are my options for getting content from the site?
I have looked into XML Parsing of the RSS feeds, and JSON API/JSON Feed. The api for JSON said it is outdated and possibly not working on new versions of wordpress websites.
What is my best options?
I need to get the post Title, Image, and Text.
Maybe you can benefit from WordPress for Android project source codes: http://android.wordpress.org/development/