To integrate Yelp into Android:
Step 1: Register on the Yelp website. You will need Yelp keys. Register here . Get access to the API.
Step 2: Scribe-1.2.1.jar should be written in your project. Get it here .
Step 3: Add these 2 files to your project: Yelp.java and YelpApi2.java .
Step 4: You can remove the main () method from Yelp.java and instead call the Yelp.search () function from your activity. Search () takes three arguments: term, latitude, and longitude. The term is what you want to search for (e.g. restaurants, bars, etc.).
Step 5: When you submit the request, you get a json response. Parse the answer to get the data. For more information on json response options, See This .
Follow these steps and you will be able to integrate with Yelp on your Android. See Api Documentation provided by Yelp.
Another Example I Learned: Yelp Example
source share