android.view.ActionProvider Java Examples
The following examples show how to use
android.view.ActionProvider.
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: ContextMenuItem.java From talkback with Apache License 2.0 | 4 votes |
@Override public ActionProvider getActionProvider() { return null; }
Example #2
Source File: ActionProviderAssert.java From assertj-android with Apache License 2.0 | 4 votes |
public ActionProviderAssert(ActionProvider actual) { super(actual, ActionProviderAssert.class); }
Example #3
Source File: TestMenuItem.java From Android-DirectoryChooser with Apache License 2.0 | 4 votes |
@Override public ActionProvider getActionProvider() { return null; }
Example #4
Source File: TestMenuItem.java From Android-DirectoryChooser with Apache License 2.0 | 4 votes |
@Override public MenuItem setActionProvider(ActionProvider actionProvider) { return null; }
Example #5
Source File: TestMenuItem.java From droid-stealth with GNU General Public License v2.0 | 4 votes |
@Override public ActionProvider getActionProvider() { return null; }
Example #6
Source File: TestMenuItem.java From droid-stealth with GNU General Public License v2.0 | 4 votes |
@Override public MenuItem setActionProvider(ActionProvider actionProvider) { return null; }
Example #7
Source File: PanelMenuItem.java From trekarta with GNU General Public License v3.0 | 4 votes |
@Override public ActionProvider getActionProvider() { return null; }
Example #8
Source File: PanelMenuItem.java From trekarta with GNU General Public License v3.0 | 4 votes |
@Override public PanelMenuItem setActionProvider(ActionProvider actionProvider) { //FIXME Unimplemented return this; }
Example #9
Source File: StubMenuItem.java From fogger with Apache License 2.0 | 4 votes |
@Override public ActionProvider getActionProvider() { throw new UnsupportedOperationException(OPERATION_NOT_SUPPORTED_BY_FOGGER); }
Example #10
Source File: StubMenuItem.java From fogger with Apache License 2.0 | 4 votes |
@Override public StubMenuItem setActionProvider(ActionProvider actionProvider) { throw new UnsupportedOperationException(OPERATION_NOT_SUPPORTED_BY_FOGGER); }
Example #11
Source File: ContextMenuItem.java From talkback with Apache License 2.0 | 4 votes |
@Override public MenuItem setActionProvider(ActionProvider actionProvider) { throw new UnsupportedOperationException(); }
Example #12
Source File: MenuItemImpl.java From ticdesign with Apache License 2.0 | 4 votes |
@Override public ActionProvider getActionProvider() { return null; }
Example #13
Source File: MenuItemImpl.java From ticdesign with Apache License 2.0 | 4 votes |
@Override public MenuItem setActionProvider(ActionProvider actionProvider) { return this; }
Example #14
Source File: MenuItemInfo.java From 920-text-editor-v2 with Apache License 2.0 | 4 votes |
@Override public ActionProvider getActionProvider() { return null; }
Example #15
Source File: MenuItemInfo.java From 920-text-editor-v2 with Apache License 2.0 | 4 votes |
@Override public MenuItem setActionProvider(ActionProvider actionProvider) { return this; }
Example #16
Source File: DialogMenuItem.java From Cirrus_depricated with GNU General Public License v2.0 | 4 votes |
@Override public ActionProvider getActionProvider() { return null; }
Example #17
Source File: DialogMenuItem.java From Cirrus_depricated with GNU General Public License v2.0 | 4 votes |
@Override public MenuItem setActionProvider(ActionProvider actionProvider) { return null; }
Example #18
Source File: BottomSheetMenuItem.java From BottomSheet with Apache License 2.0 | 4 votes |
@Override public MenuItem setActionProvider(ActionProvider actionProvider) { throw new UnsupportedOperationException(); }
Example #19
Source File: BottomSheetMenuItem.java From BottomSheet with Apache License 2.0 | 4 votes |
@Override public ActionProvider getActionProvider() { return null; }
Example #20
Source File: TestMenuItem.java From Badger with Apache License 2.0 | 4 votes |
@Override public ActionProvider getActionProvider() { throw new AssertionError("not mocked"); }
Example #21
Source File: TestMenuItem.java From Badger with Apache License 2.0 | 4 votes |
@Override public MenuItem setActionProvider(ActionProvider actionProvider) { throw new AssertionError("not mocked"); }
Example #22
Source File: ActivityChooserView.java From android_9.0.0_r45 with Apache License 2.0 | 2 votes |
/** * Set the provider hosting this view, if applicable. * @hide Internal use only */ public void setProvider(ActionProvider provider) { mProvider = provider; }