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 9 years ago.
Improve this question
I'm developing an app to get Location name then put it into a googlemap and display that location wiki page . I tied to search but There is some phonegap android app .
My question is : Is there any Wiki API for android native app to get and search information ? and how to implement it ?
I did a Google search for wiki API and it brought me here:
http://www.mediawiki.org/wiki/API:Main_page
It is not specifically for android but it should be able to work for you.
An example:
http://en.wikipedia.org/w/api.php?format=json&action=query&titles=API&prop=revisions&rvprop=content
If you can not find a usable api, you can use JSoup to parse wikipedia and return relevant information or you can build a url based on user's input and implement a webview
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 6 years ago.
Improve this question
I have a function that gets the list of all the installed applications on the user's phone. Is there anyway I can sort this list based on the category of the application installed?
Example - Messenger,Whatsapp, Facebook messenger}
What is the best way to achieve this?
Application info may contains some like this:
Packagename,
Applicationname,
Permissions,
icons & images.
So, We can't be able to get google playstore data for that app. Google playstore have category and other that cant get as programatically.
u may try on this sdk but its unofficial API http://code.google.com/p/android-market-api/
Reference: https://stackoverflow.com/a/6175782/4609016
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 7 years ago.
Improve this question
I want to create an android app from my existing wordpress site.
I have a news site running on wordpress whose theme was built my me. I would like to create an app for the same site. Basically it just has to list posts available on the site.
I am aware of some plugins which would do it automatically but I would like to know if it can be done using phonegap.
I need some help (pointers) as to how I can pull posts from my wordpress site and reflect it on the app.
This is a good and complete tutorial for build this app using ionic framework:
Link video
There are options, like AppPresser, they convert your WordPress website into a mobile app, publish on the app stores for a fee.
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 am new in android programming and we have a small project at collage to do. I am looking everywhere how to get from one Facebook page the INFO data(https://www.facebook.com/vanillazmusic/info?tab=page_info) to my program, and then get that data to variables, so i can work with them. I installed and prepared Facebook sdk and everything, but now I dont have any idea how to do that. Any help or links to you-tube or something would be great.
You can only use app_data to transfer data to your tab, and it will be in the signed_request parameter. See the Facebook docs for more information:
https://developers.facebook.com/docs/appsonfacebook/pagetabs
https://developers.facebook.com/docs/reference/login/signed-request
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
Is it possible to get HTML content in Android and remove what I don't need from it?
For example I want to get the name of the top movies in IMDB(http://www.imdb.com/chart/top), now is it possible just to get the names without anything else?
First of all, check if your target site has an API. If it does, fine!
If it doesn't, you can read details from the HTML itself, it's called Web Scraping.
You can find how to do it here.
EDIT:
I see you've found an API and it working with XML. You can find how to work with XML in android here.
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 need to know if the link on contact page that I'm working on don't have error.
I mean if the android user not installed google maps app yet, what's happens when his touch the image link? Or as iOS, the maps app Already comes installed?
One possible approach is checking if the user has Google Maps installed on the device. If not, direct the user to the Play Store. This link can be useful