Lines Matching refs:mShareIntent
33 private Intent mShareIntent = new Intent(); field in SelectionManager
91 mShareIntent.removeExtra(Intent.EXTRA_STREAM); in onItemSelectedStateChanged()
93 mShareIntent.setAction(null).setType(null); in onItemSelectedStateChanged()
97 mShareIntent.setAction(null).setType(null); in onItemSelectedStateChanged()
100 mShareIntent.setType(GalleryUtils.MIME_TYPE_IMAGE); in onItemSelectedStateChanged()
102 mShareIntent.setType(GalleryUtils.MIME_TYPE_VIDEO); in onItemSelectedStateChanged()
104 mShareIntent.setType(GalleryUtils.MIME_TYPE_ALL); in onItemSelectedStateChanged()
107 mShareIntent.setAction(Intent.ACTION_SEND); in onItemSelectedStateChanged()
108 mShareIntent.putExtra(Intent.EXTRA_STREAM, mCachedShareableUris.get(0)); in onItemSelectedStateChanged()
110 mShareIntent.setAction(Intent.ACTION_SEND_MULTIPLE); in onItemSelectedStateChanged()
111 mShareIntent.putExtra(Intent.EXTRA_STREAM, mCachedShareableUris); in onItemSelectedStateChanged()
115 share.setShareIntent(mShareIntent); in onItemSelectedStateChanged()
158 mShareIntent.removeExtra(Intent.EXTRA_STREAM); in onClearSelection()
159 mShareIntent.setAction(null).setType(null); in onClearSelection()