use of org.wordpress.android.fluxc.model.post.PostLocation in project WordPress-Android by wordpress-mobile.
the class EditPostSettingsFragment method setLocation.
private void setLocation(double latitude, double longitude) {
mPostLocation = new PostLocation(latitude, longitude);
new GetAddressTask().execute(mPostLocation.getLatitude(), mPostLocation.getLongitude());
}
Aggregations