ঠিকানা পেতে, execute()কল করুন। উদাহরণস্বরূপ, নিচের কোড চিত্রটি ঠিকানা অনুসন্ধান শুরু করে যখন ইউজার "Get Address" বাটন ক্লিক করে:
public class MainActivity extends FragmentActivity {
...
/**
* The "Get Address" button in the UI is defined with
* android:onClick="getAddress". The method is invoked whenever the
* user clicks the button.
*
* @param v The view object associated with this method,
* in this case a Button.
*/
public void getAddress(View v) {
// Ensure that a Geocoder services is available
if (Build.VERSION.SDK_INT >=
Build.VERSION_CODES.GINGERBREAD
&&
Geocoder.isPresent()) {
// Show the activity indicator
mActivityIndicator.setVisibility(View.VISIBLE);
/*
* Reverse geocoding is long-running and synchronous.
* Run it on a background thread.
* Pass the current location to the background task.
* When the task finishes,
* onPostExecute() displays the address.
*/
(new GetAddressTask(this)).execute(mLocation);
}
...
}
...
}
পরবর্তী অনুশীলনী, Creating and Monitoring Geofences/ জিওফেন্স তৈরী করা এবং মনিটরিং করা, দেখায় কীভাবে লোকেশন অব ইন্টারেস্ট নির্ধারণ করতে হয় যাকে geofences বলা হয় এবং লোকেশন অব ইন্টারেস্ট এ ইউজারের নৈকট্য চিহ্নিত করতে কীভাবে জিওফেন্স মনিটরিং ব্যবহার করতে হয় ।