List of usage examples for android.widget PopupMenu.OnMenuItemClickListener interface-usage
From source file com.siva.animation_sample.HomeActivity.java
public class HomeActivity extends FragmentActivity implements PopupMenu.OnMenuItemClickListener { AlertDialog.Builder alert; private FragmentTabHost mTabHost; View custom_action_view = null;
From source file com.cyanogenmod.eleven.utils.PopupMenuHelper.java
/** * Simple helper class that does most of the popup menu inflating and handling * It has a few hooks around so that if the class wants customization they can add it on * without changing this class too much */ public abstract class PopupMenuHelper implements PopupMenu.OnMenuItemClickListener {
From source file com.morlunk.mumbleclient.channel.UserMenu.java
/** * Created by andrew on 19/11/15. */ public class UserMenu implements PermissionsPopupMenu.IOnMenuPrepareListener, PopupMenu.OnMenuItemClickListener { private final Context mContext; private final IUser mUser;
From source file com.rong.library.widget.mapsearchbar.MapSearchBar.java
/**
* Copyright (c) 2016-2017, j2Rong
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
From source file com.morlunk.mumbleclient.channel.ChannelMenu.java
/** * Created by andrew on 22/11/15. */ public class ChannelMenu implements PermissionsPopupMenu.IOnMenuPrepareListener, PopupMenu.OnMenuItemClickListener { private final Context mContext; private final IChannel mChannel;
From source file com.q335.r49.squaredays.MainActivity.java
public class MainActivity extends AppCompatActivity implements TasksFrag.OnFragmentInteractionListener, CalendarFrag.OnFragmentInteractionListener, PopupMenu.OnMenuItemClickListener { Context context; SharedPreferences prefs; private static final String fLOGS = "log.txt"; private static final String fTASKS = "commands.json";
From source file net.margaritov.preference.colorpicker.ColorPickerDialog.java
public class ColorPickerDialog extends Dialog implements ColorPickerView.OnColorChangedListener, PopupMenu.OnMenuItemClickListener, View.OnClickListener { private View mColorPickerView; private LinearLayout mActionBarMain; private LinearLayout mActionBarEditHex;
From source file com.fusionx.lightirc.ui.ChannelFragment.java
public final class ChannelFragment extends IRCFragment<ChannelEvent> implements PopupMenu.OnMenuItemClickListener, PopupMenu.OnDismissListener, TextWatcher { public static final ImmutableList<? extends Class<? extends ChannelEvent>> sClasses = ImmutableList .of(NameEvent.class);
From source file com.ultramegasoft.flavordex2.fragment.PhotoFragment.java
/** * Fragment for displaying a single photo. * * @author Steve Guidetti */ public class PhotoFragment extends Fragment
From source file org.gnucash.android.ui.common.BaseDrawerActivity.java
/**
* Base activity implementing the navigation drawer, to be extended by all activities requiring one.
* <p>
* Each activity inheriting from this class has an indeterminate progress bar at the top,
* (above the action bar) which can be used to display busy operations. See {@link #getProgressBar()}
* </p>