Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
Here is the thing, i want to retrieve some news into my android application which i could find in a json file.
I was thinking about creating some blog(wordpress maybe) and by adding articles, it automatically add it into the json file.
In this way, after relying my app to the json file, all i need to do is adding articles in the blog.
After app started load JSON from server.
Parse it to app content.
Add posibility for manual refresh with SwipeRefreshLayout. https://developer.android.com/reference/android/support/v4/widget/SwipeRefreshLayout.html
If you need your app update JSON automatically, after new post added to blog your should use Google Cloud Messaging. https://developers.google.com/cloud-messaging/?hl=ru
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
I'm trying to get this web page and extract the list of android apps in the background:
https://play.google.com/store/account?purchaseFilter=apps
The page requires a log-in in order to view it, so how do I do it? I can't find any tutorials on the web about this.
You need to connect to the play store via its API, then connect the account of which you want to extract the apps. See examples in the Google Play Developer API.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
i have been trying to connect mysql db with android app, and through json i cannot connect it, is it ok not to use json or use any method without json ?
You never needed JSON. You could use XML instead, or create your own serialized format.
The purpose of using a web API (assuming you are using PHP + MySQL) is that you should not use JDBC directly from the Android app
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 6 years ago.
Improve this question
I have photo sharing application running on Parse. So if I will migrate to Parse Server, should I change my Android Code or it's just backend thing? And what is the best and the easiest way to migrate from parse without building new system on my own physical server.
Thank you.
If you are migrating to parse server, you shouldn't need to change your Android code. You will need to update to the latest android sdk and initialize parse with your own serverURL however. The serverURL is wherever you decide to host your parse server.
Hosting parse server is straight forward. Check out the parse server example here. They have links to one click deployment to a bunch of different paas providers such as heroku. If you have a lot of cloud code the migration process can become more complicated and is probably out of scope for this question. Most of it is outlined in the docs however.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I'm using Google translator, sorry for the typos.
My scenario is as follows. I have a WebService Restfull and an Android client using Jersey and JSON in Java. Can receive data and send them, my doubts are:
How receive JSON strings of images and saves it to a directory on WebService?
I need examples of methods that perform this task.
You can parse the image from json using AsyncTask to get the image from the server and convert it into the bitmap and set it in your views.
Below are some of the examples which shows how to load image from JSON response:
JSON parsing and Image Loading
Android JSON parsing to load image
Hope this will guide you.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I want to get exact video link from some streaming video resources like you-tube or metacafe.com, As there is no direct link of video is available. How can I parse the video
link. Also how to use java to download a streaming video from http url to local system?
Thanks!
I used a library called HTMLParser before. It can read html input and generate HTML nodes. You can then analyze and retrieve the node you like.