Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ContextMenuListener.java « menu « view « internal « actionbarsherlock « com « src « library « HoloEverywhere « 3rd_party « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63f24f592431b81ed400e31760ef0d4856444cbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

package com.actionbarsherlock.internal.view.menu;

import android.view.ContextMenu.ContextMenuInfo;
import android.view.View;

import com.actionbarsherlock.view.ContextMenu;
import com.actionbarsherlock.view.MenuItem;

public interface ContextMenuListener {
    public boolean onContextItemSelected(MenuItem item);

    public void onContextMenuClosed(ContextMenu menu);

    public void onCreateContextMenu(ContextMenu menu, View view, ContextMenuInfo menuInfo);
}