Java Code Examples for android.view.View#OnCreateContextMenuListener

The following examples show how to use android.view.View#OnCreateContextMenuListener . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TransactionAdapter.java    From bcm-android with GNU General Public License v3.0 4 votes vote down vote up
public TransactionAdapter(List<TransactionDisplay> boxlist, Context context, View.OnClickListener clickListener, View.OnCreateContextMenuListener listener) {
    this.boxlist = boxlist;
    this.context = context;
    this.contextMenuListener = listener;
    this.clickListener = clickListener;
}
 
Example 2
Source File: WalletAdapter.java    From bcm-android with GNU General Public License v3.0 4 votes vote down vote up
public WalletAdapter(List<WalletDisplay> boxlist, Context context, View.OnClickListener listener, View.OnCreateContextMenuListener l) {
    this.boxlist = boxlist;
    this.context = context;
    this.listener = listener;
    this.contextMenuListener = l;
}
 
Example 3
Source File: TokenAdapter.java    From bcm-android with GNU General Public License v3.0 4 votes vote down vote up
public TokenAdapter(List<TokenDisplay> boxlist, Context context, View.OnClickListener listener, View.OnCreateContextMenuListener l) {
    this.boxlist = boxlist;
    this.context = context;
    this.listener = listener;
    this.contextMenuListener = l;
}
 
Example 4
Source File: ImagePageViewNewAdapter.java    From imsdk-android with MIT License 4 votes vote down vote up
public void setListener(View.OnCreateContextMenuListener listener) {
    this.menulistener = listener;
}
 
Example 5
Source File: ImagePageViewAdapter.java    From imsdk-android with MIT License 4 votes vote down vote up
public void setListener(View.OnCreateContextMenuListener listener) {
    this.listener = listener;
}
 
Example 6
Source File: TransactionAdapter.java    From Lunary-Ethereum-Wallet with GNU General Public License v3.0 4 votes vote down vote up
public TransactionAdapter(List<TransactionDisplay> boxlist, Context context, View.OnClickListener clickListener, View.OnCreateContextMenuListener listener) {
    this.boxlist = boxlist;
    this.context = context;
    this.contextMenuListener = listener;
    this.clickListener = clickListener;
}
 
Example 7
Source File: WalletAdapter.java    From Lunary-Ethereum-Wallet with GNU General Public License v3.0 4 votes vote down vote up
public WalletAdapter(List<WalletDisplay> boxlist, Context context, View.OnClickListener listener, View.OnCreateContextMenuListener l) {
    this.boxlist = boxlist;
    this.context = context;
    this.listener = listener;
    this.contextMenuListener = l;
}
 
Example 8
Source File: TokenAdapter.java    From Lunary-Ethereum-Wallet with GNU General Public License v3.0 4 votes vote down vote up
public TokenAdapter(List<TokenDisplay> boxlist, Context context, View.OnClickListener listener, View.OnCreateContextMenuListener l) {
    this.boxlist = boxlist;
    this.context = context;
    this.listener = listener;
    this.contextMenuListener = l;
}
 
Example 9
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void onCreateContextMenu(View.OnCreateContextMenuListener arg) {
  return BaseDSL.attr("onCreateContextMenu", arg);
}
 
Example 10
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void onCreateContextMenu(View.OnCreateContextMenuListener arg) {
  return BaseDSL.attr("onCreateContextMenu", arg);
}