summaryrefslogtreecommitdiffstats
path: root/src/com/android/gallery3d/actionbar/SimpleActionMode.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/gallery3d/actionbar/SimpleActionMode.java')
-rw-r--r--src/com/android/gallery3d/actionbar/SimpleActionMode.java44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/com/android/gallery3d/actionbar/SimpleActionMode.java b/src/com/android/gallery3d/actionbar/SimpleActionMode.java
new file mode 100644
index 000000000..33733d173
--- /dev/null
+++ b/src/com/android/gallery3d/actionbar/SimpleActionMode.java
@@ -0,0 +1,44 @@
+package com.android.gallery3d.actionbar;
+
+import android.content.Intent;
+import android.view.View;
+
+public class SimpleActionMode implements ActionModeInterface {
+
+ @Override
+ public void setMenuItemVisible(int menuItemId, boolean visible) {
+ }
+
+ @Override
+ public void setMenuItemTitle(int menuItemId, String title) {
+ }
+
+ @Override
+ public void setMenuItemIntent(int menuItemId, Intent intent) {
+ }
+
+ @Override
+ public void inflateMenu(int operation) {
+ }
+
+ @Override
+ public void setCustomView(View view) {
+ }
+
+ @Override
+ public void finish() {
+ }
+
+ @Override
+ public void setShareIntent(Intent intent) {
+ }
+
+ @Override
+ public boolean hasShareButton() {
+ return false;
+ }
+
+ @Override
+ public void setOnShareTargetSelectedListener(OnShareTargetSelectedListener listener) {
+ }
+}