forked from organicmaps/organicmaps-tmp
Review fixes.
This commit is contained in:
parent
00bdffaba3
commit
26ed23264c
2 changed files with 6 additions and 5 deletions
|
@ -15,8 +15,8 @@ public class LocationPredictor
|
|||
private Handler mHandler;
|
||||
|
||||
private LocationHelper.LocationListener mListener;
|
||||
private Location mLastLocation = null;
|
||||
private boolean mGeneratePredictions = false;
|
||||
private Location mLastLocation;
|
||||
private boolean mGeneratePredictions;
|
||||
private int mPredictionCount;
|
||||
private int mConnectionSlot;
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
package com.mapswithme.maps.widget.placepage;
|
||||
|
||||
import android.annotation.SuppressLint;
|
||||
import android.app.Activity;
|
||||
import android.content.ActivityNotFoundException;
|
||||
import android.content.Context;
|
||||
|
@ -763,11 +764,11 @@ public class PlacePageView extends RelativeLayout implements View.OnClickListene
|
|||
}
|
||||
|
||||
@Override
|
||||
@SuppressLint("NewApi")
|
||||
public boolean onLongClick(View v)
|
||||
{
|
||||
/// @todo Review this code in case of API level < 11.
|
||||
if (Utils.apiLowerThan(11))
|
||||
return true;
|
||||
// This callback is invoked only for API level >= 11.
|
||||
// See initViews function for more details.
|
||||
|
||||
final Object tag = v.getTag();
|
||||
final String tagStr = tag == null ? "" : tag.toString();
|
||||
|
|
Loading…
Add table
Reference in a new issue