forked from organicmaps/organicmaps-tmp
[android] Skip popup processing for API < 11.
This commit is contained in:
parent
1bb830344d
commit
3c74572021
1 changed files with 4 additions and 0 deletions
|
@ -759,6 +759,10 @@ public class PlacePageView extends RelativeLayout implements View.OnClickListene
|
|||
@Override
|
||||
public boolean onLongClick(View v)
|
||||
{
|
||||
/// @todo Review this code in case of API level < 11.
|
||||
if (Utils.apiLowerThan(11))
|
||||
return true;
|
||||
|
||||
final Object tag = v.getTag();
|
||||
final String tagStr = tag == null ? "" : tag.toString();
|
||||
AlohaHelper.logLongClick(tagStr);
|
||||
|
|
Loading…
Add table
Reference in a new issue