| /* |
| * Copyright (c) 2015, The Linux Foundation. All rights reserved. |
| * Not a Contribution |
| * |
| * Copyright (C) 2010 The Android Open Source Project |
| * |
| * 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 |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| package com.android.gallery3d.app; |
| |
| import android.app.Activity; |
| import android.content.Context; |
| import android.content.Intent; |
| import android.content.res.Configuration; |
| import android.graphics.Color; |
| import android.graphics.Rect; |
| import android.net.Uri; |
| import android.os.AsyncTask; |
| import android.os.Bundle; |
| import android.os.Handler; |
| import android.os.Message; |
| import android.provider.MediaStore; |
| import android.text.TextUtils; |
| import android.util.TypedValue; |
| import android.view.Gravity; |
| import android.view.HapticFeedbackConstants; |
| import android.view.Menu; |
| import android.view.MenuInflater; |
| import android.view.MenuItem; |
| import android.view.View; |
| import android.view.View.OnClickListener; |
| import android.widget.Button; |
| import android.widget.RelativeLayout; |
| import android.widget.TextView; |
| import android.widget.Toast; |
| |
| import com.android.gallery3d.common.Utils; |
| import com.android.gallery3d.data.ClusterAlbum; |
| import com.android.gallery3d.data.DataManager; |
| import com.android.gallery3d.data.MediaDetails; |
| import com.android.gallery3d.data.MediaItem; |
| import com.android.gallery3d.data.MediaObject; |
| import com.android.gallery3d.data.MediaSet; |
| import com.android.gallery3d.data.Path; |
| import com.android.gallery3d.data.ClusterAlbumSet; |
| import com.android.gallery3d.filtershow.crop.CropActivity; |
| import com.android.gallery3d.filtershow.crop.CropExtras; |
| import com.android.gallery3d.glrenderer.FadeTexture; |
| import com.android.gallery3d.glrenderer.GLCanvas; |
| import com.android.gallery3d.ui.ActionModeHandler; |
| import com.android.gallery3d.ui.ActionModeHandler.ActionModeListener; |
| import com.android.gallery3d.ui.DetailsHelper; |
| import com.android.gallery3d.ui.DetailsHelper.CloseListener; |
| import com.android.gallery3d.ui.GLRoot; |
| import com.android.gallery3d.ui.GLView; |
| import com.android.gallery3d.ui.PhotoFallbackEffect; |
| import com.android.gallery3d.ui.RelativePosition; |
| import com.android.gallery3d.ui.SelectionManager; |
| import com.android.gallery3d.ui.SynchronizedHandler; |
| import com.android.gallery3d.ui.TimeLineSlotRenderer; |
| import com.android.gallery3d.ui.TimeLineSlotView; |
| import com.android.gallery3d.util.Future; |
| import com.android.gallery3d.util.GalleryUtils; |
| import org.codeaurora.gallery.R; |
| |
| import java.lang.ref.WeakReference; |
| import java.util.ArrayList; |
| import java.util.Locale; |
| |
| public class TimeLinePage extends ActivityState implements |
| GalleryActionBar.ClusterRunner, SelectionManager.SelectionListener, |
| MediaSet.SyncListener, GalleryActionBar.OnAlbumModeSelectedListener { |
| |
| private static final String TAG = "TimeLinePage"; |
| |
| public static final String KEY_MEDIA_PATH = "media-path"; |
| public static final String KEY_AUTO_SELECT_ALL = "auto-select-all"; |
| public static final String KEY_SHOW_CLUSTER_MENU = "cluster-menu"; |
| public static final String KEY_RESUME_ANIMATION = "resume_animation"; |
| |
| private static final int REQUEST_SLIDESHOW = 1; |
| public static final int REQUEST_PHOTO = 2; |
| private static final int REQUEST_DO_ANIMATION = 3; |
| |
| private static final int BIT_LOADING_RELOAD = 1; |
| private static final int BIT_LOADING_SYNC = 2; |
| |
| private static final float USER_DISTANCE_METER = 0.3f; |
| |
| private boolean mIsActive = false; |
| private TimeLineSlotRenderer mAlbumView; |
| private Path mMediaSetPath; |
| private TimeLineSlotView mSlotView; |
| private TimeLineDataLoader mAlbumDataAdapter; |
| protected SelectionManager mSelectionManager; |
| private boolean mGetContent; |
| private boolean mShowClusterMenu; |
| |
| protected ActionModeHandler mActionModeHandler; |
| private int mFocusIndex = 0; |
| private DetailsHelper mDetailsHelper; |
| private MyDetailsSource mDetailsSource; |
| private MediaSet mMediaSet; |
| private boolean mShowDetails; |
| private float mUserDistance; // in pixel |
| private Future<Integer> mSyncTask = null; |
| private boolean mLaunchedFromPhotoPage; |
| private boolean mInCameraApp; |
| private TextView tvEmptyAlbum; |
| |
| private int mLoadingBits = 0; |
| private boolean mInitialSynced = false; |
| private int mSyncResult; |
| private boolean mLoadingFailed; |
| private RelativePosition mOpenCenter = new RelativePosition(); |
| |
| private Handler mHandler; |
| private static final int MSG_PICK_PHOTO = 0; |
| |
| private PhotoFallbackEffect mResumeEffect; |
| private PhotoFallbackEffect.PositionProvider mPositionProvider = |
| new PhotoFallbackEffect.PositionProvider() { |
| @Override |
| public Rect getPosition(int index) { |
| Rect rect = mSlotView.getSlotRect(index); |
| Rect bounds = mSlotView.bounds(); |
| rect.offset(bounds.left - mSlotView.getScrollX(), |
| bounds.top - mSlotView.getScrollY()); |
| return rect; |
| } |
| |
| @Override |
| public int getItemIndex(Path path) { |
| int start = mSlotView.getVisibleStart(); |
| int end = mSlotView.getVisibleEnd(); |
| for (int i = start; i < end; ++i) { |
| MediaItem item = mAlbumDataAdapter.get(i); |
| if (item != null && item.getPath() == path) return i; |
| } |
| return -1; |
| } |
| }; |
| |
| private Button mCameraButton; |
| private boolean mShowedEmptyToastForSelf = false; |
| |
| |
| @Override |
| protected int getBackgroundColorId() { |
| return R.color.album_background; |
| } |
| |
| private final GLView mRootPane = new GLView() { |
| private final float mMatrix[] = new float[16]; |
| |
| @Override |
| protected void onLayout( |
| boolean changed, int left, int top, int right, int bottom) { |
| |
| int slotViewTop; |
| android.widget.Toolbar toolbar = mActivity.getToolbar(); |
| if (toolbar != null) { |
| slotViewTop = toolbar.getLayoutParams().height; |
| } else { |
| slotViewTop = mActivity.getGalleryActionBar().getHeight(); |
| } |
| int padding =0 ; |
| if((right - left) > (bottom - top)) { |
| padding = (int) mActivity.getResources().getDimension(R.dimen.timeline_land_margin); |
| } else { |
| padding = (int) mActivity.getResources().getDimension(R.dimen.timeline_port_margin); |
| } |
| int slotViewBottom = bottom - top; |
| int slotViewRight = right - left - padding; |
| |
| if (mShowDetails) { |
| mDetailsHelper.layout(left, slotViewTop, right, bottom); |
| } else { |
| mAlbumView.setHighlightItemPath(null); |
| } |
| |
| // Set the mSlotView as a reference point to the open animation |
| mOpenCenter.setReferencePosition(0, slotViewTop); |
| mSlotView.layout(padding, slotViewTop, slotViewRight, slotViewBottom); |
| GalleryUtils.setViewPointMatrix(mMatrix, |
| (right - left) / 2, (bottom - top) / 2, -mUserDistance); |
| } |
| |
| @Override |
| protected void render(GLCanvas canvas) { |
| canvas.save(GLCanvas.SAVE_FLAG_MATRIX); |
| canvas.multiplyMatrix(mMatrix, 0); |
| super.render(canvas); |
| |
| if (mResumeEffect != null) { |
| boolean more = mResumeEffect.draw(canvas); |
| if (!more) { |
| mResumeEffect = null; |
| mAlbumView.setSlotFilter(null); |
| } |
| // We want to render one more time even when no more effect |
| // required. So that the animated thumbnails could be draw |
| // with declarations in super.render(). |
| invalidate(); |
| } |
| canvas.restore(); |
| } |
| }; |
| |
| // This are the transitions we want: |
| // |
| // +--------+ +------------+ +-------+ +----------+ |
| // | Camera |---------->| Fullscreen |--->| Album |--->| AlbumSet | |
| // | View | thumbnail | Photo | up | Page | up | Page | |
| // +--------+ +------------+ +-------+ +----------+ |
| // ^ | | ^ | |
| // | | | | | close |
| // +----------back--------+ +----back----+ +--back-> app |
| // |
| @Override |
| protected void onBackPressed() { |
| if (mShowDetails) { |
| hideDetails(); |
| } else if (mSelectionManager.inSelectionMode()) { |
| mSelectionManager.leaveSelectionMode(); |
| } else { |
| if(mLaunchedFromPhotoPage) { |
| mActivity.getTransitionStore().putIfNotPresent( |
| PhotoPage.KEY_ALBUMPAGE_TRANSITION, |
| PhotoPage.MSG_ALBUMPAGE_RESUMED); |
| } |
| if (mInCameraApp) { |
| super.onBackPressed(); |
| } else { |
| onUpPressed(); |
| } |
| } |
| } |
| |
| private void onUpPressed() { |
| if (mInCameraApp) { |
| GalleryUtils.startGalleryActivity(mActivity); |
| } else |
| super.onBackPressed(); |
| } |
| |
| private void onDown(int index) { |
| mAlbumView.setPressedIndex(index); |
| } |
| |
| private void onUp(boolean followedByLongPress) { |
| if (followedByLongPress) { |
| // Avoid showing press-up animations for long-press. |
| mAlbumView.setPressedIndex(-1); |
| } else { |
| mAlbumView.setPressedUp(); |
| } |
| } |
| |
| private void onSingleTapUp(int slotIndex , boolean isTitle) { |
| if (!mIsActive) return; |
| if (mSelectionManager.inSelectionMode()) { |
| if(isTitle){ |
| MediaSet targetSet = mAlbumDataAdapter.getMediaSet(slotIndex); |
| if (targetSet == null) return; |
| ArrayList<Path> paths = ((ClusterAlbum)targetSet).getMediaItems(); |
| if (paths == null || paths.size() <= 0) return; |
| mSelectionManager.toggleTimeLineSet(paths); |
| mSlotView.invalidate(); |
| } else { |
| MediaItem item = mAlbumDataAdapter.get(slotIndex); |
| if (item == null) return; // Item not ready yet, ignore the click |
| if (mSelectionManager.getSelectedCount() > 0) { |
| if (!ActionModeHandler.isThreadComplete) |
| return; |
| } |
| mSelectionManager.toggle(item.getPath()); |
| mSlotView.invalidate(); |
| } |
| } else if(!isTitle){ |
| // Render transition in pressed state |
| mAlbumView.setPressedIndex(slotIndex); |
| mAlbumView.setPressedUp(); |
| mHandler.sendMessageDelayed(mHandler.obtainMessage(MSG_PICK_PHOTO, slotIndex, 0), |
| FadeTexture.DURATION); |
| } |
| } |
| |
| private void pickPhoto(int slotIndex) { |
| pickPhoto(slotIndex, false); |
| } |
| |
| private void pickPhoto(int slotIndex, boolean startInFilmstrip) { |
| if (!mIsActive) return; |
| |
| if (!startInFilmstrip) { |
| // Launch photos in lights out mode |
| mActivity.getGLRoot().setLightsOutMode(true); |
| } |
| |
| MediaItem item = mAlbumDataAdapter.get(slotIndex); |
| |
| if (mGetContent) { |
| if (item == null) |
| return; // Item not ready yet, ignore the click |
| onGetContent(item); |
| } else if (mLaunchedFromPhotoPage) { |
| TransitionStore transitions = mActivity.getTransitionStore(); |
| transitions.put( |
| PhotoPage.KEY_ALBUMPAGE_TRANSITION, |
| PhotoPage.MSG_ALBUMPAGE_PICKED); |
| transitions.put(PhotoPage.KEY_INDEX_HINT, slotIndex); |
| onBackPressed(); |
| } else { |
| MediaSet targetset = mAlbumDataAdapter.getMediaSet(slotIndex); |
| if (targetset == null || item == null) return; |
| |
| Bundle data = new Bundle(); |
| data.putInt(PhotoPage.KEY_INDEX_HINT, slotIndex-1); |
| data.putString(PhotoPage.KEY_MEDIA_SET_PATH, |
| targetset.getPath().toString()); |
| data.putParcelable(PhotoPage.KEY_OPEN_ANIMATION_RECT, |
| mSlotView.getSlotRect(slotIndex, mRootPane)); |
| data.putString(PhotoPage.KEY_MEDIA_ITEM_PATH, |
| item.getPath().toString()); |
| data.putBoolean(PhotoPage.KEY_FROM_TIMELINE_SCREEN, true); |
| data.putInt(PhotoPage.KEY_ALBUMPAGE_TRANSITION, |
| PhotoPage.MSG_ALBUMPAGE_STARTED); |
| data.putBoolean(PhotoPage.KEY_START_IN_FILMSTRIP, |
| startInFilmstrip); |
| data.putBoolean(PhotoPage.KEY_IN_CAMERA_ROLL, targetset.isCameraRoll()); |
| mActivity.getStateManager().startStateForResult( |
| SinglePhotoPage.class, REQUEST_PHOTO, data); |
| } |
| } |
| |
| private void onGetContent(final MediaItem item) { |
| DataManager dm = mActivity.getDataManager(); |
| Activity activity = mActivity; |
| if (mData.getString(GalleryActivity.EXTRA_CROP) != null) { |
| Uri uri = dm.getContentUri(item.getPath()); |
| Intent intent = new Intent(CropActivity.CROP_ACTION, uri) |
| .addFlags(Intent.FLAG_ACTIVITY_FORWARD_RESULT) |
| .putExtras(getData()); |
| if (mData.getParcelable(MediaStore.EXTRA_OUTPUT) == null) { |
| intent.putExtra(CropExtras.KEY_RETURN_DATA, true); |
| } |
| activity.startActivity(intent); |
| activity.finish(); |
| } else { |
| Intent intent = new Intent(null, item.getContentUri()) |
| .addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); |
| activity.setResult(Activity.RESULT_OK, intent); |
| activity.finish(); |
| } |
| } |
| |
| public void onLongTap(int slotIndex, boolean isTitle) { |
| if (mGetContent) return; |
| if(isTitle){ |
| MediaSet targetSet = mAlbumDataAdapter.getMediaSet(slotIndex); |
| if (targetSet == null) return; |
| ArrayList<Path> paths = ((ClusterAlbum)targetSet).getMediaItems(); |
| if (paths == null || paths.size() <= 0) return; |
| mSelectionManager.setAutoLeaveSelectionMode(true); |
| mSelectionManager.toggleTimeLineSet(paths); |
| mSlotView.invalidate(); |
| } else { |
| MediaItem item = mAlbumDataAdapter.get(slotIndex); |
| if (item == null) return; |
| mSelectionManager.setAutoLeaveSelectionMode(true); |
| mSelectionManager.toggle(item.getPath()); |
| mSlotView.invalidate(); |
| } |
| } |
| |
| @Override |
| public void doCluster(int clusterType) { |
| String basePath = mMediaSet.getPath().toString(); |
| String newPath = FilterUtils.newClusterPath(basePath, clusterType); |
| Bundle data = new Bundle(getData()); |
| data.putString(AlbumSetPage.KEY_MEDIA_PATH, newPath); |
| if (mShowClusterMenu) { |
| Context context = mActivity.getAndroidContext(); |
| data.putString(AlbumSetPage.KEY_SET_TITLE, mMediaSet.getName()); |
| data.putString(AlbumSetPage.KEY_SET_SUBTITLE, |
| GalleryActionBar.getClusterByTypeString(context, clusterType)); |
| } |
| |
| mActivity.getStateManager().startStateForResult( |
| AlbumSetPage.class, REQUEST_DO_ANIMATION, data); |
| } |
| |
| @Override |
| protected void onCreate(Bundle data, Bundle restoreState) { |
| super.onCreate(data, restoreState); |
| mUserDistance = GalleryUtils.meterToPixel(USER_DISTANCE_METER); |
| initializeViews(); |
| initializeData(data); |
| mGetContent = data.getBoolean(GalleryActivity.KEY_GET_CONTENT, false); |
| mShowClusterMenu = data.getBoolean(KEY_SHOW_CLUSTER_MENU, false); |
| mDetailsSource = new MyDetailsSource(); |
| |
| if (data.getBoolean(KEY_AUTO_SELECT_ALL)) { |
| mSelectionManager.selectAll(); |
| } |
| |
| mLaunchedFromPhotoPage = |
| mActivity.getStateManager().hasStateClass(FilmstripPage.class); |
| mInCameraApp = data.getBoolean(PhotoPage.KEY_APP_BRIDGE, false); |
| |
| mHandler = new SynchronizedHandler(mActivity.getGLRoot()) { |
| @Override |
| public void handleMessage(Message message) { |
| switch (message.what) { |
| case MSG_PICK_PHOTO: { |
| pickPhoto(message.arg1); |
| break; |
| } |
| default: |
| throw new AssertionError(message.what); |
| } |
| } |
| }; |
| } |
| |
| @Override |
| protected void onResume() { |
| super.onResume(); |
| |
| mIsActive = true; |
| |
| mResumeEffect = mActivity.getTransitionStore().get(KEY_RESUME_ANIMATION); |
| if (mResumeEffect != null) { |
| mAlbumView.setSlotFilter(mResumeEffect); |
| mResumeEffect.setPositionProvider(mPositionProvider); |
| mResumeEffect.start(); |
| } |
| |
| setContentPane(mRootPane); |
| |
| // Set the reload bit here to prevent it exit this page in clearLoadingBit(). |
| setLoadingBit(BIT_LOADING_RELOAD); |
| if (null != mMediaSet) { |
| //set to show timeline title |
| mMediaSet.setShowAlbumsetTimeTitle(true); |
| } |
| mLoadingFailed = false; |
| mAlbumDataAdapter.resume(); |
| |
| mAlbumView.resume(); |
| mAlbumView.setPressedIndex(-1); |
| mActionModeHandler.resume(); |
| if (!mInitialSynced) { |
| setLoadingBit(BIT_LOADING_SYNC); |
| mSyncTask = mMediaSet.requestSync(this); |
| } |
| } |
| |
| @Override |
| protected void onPause() { |
| super.onPause(); |
| mIsActive = false; |
| |
| mAlbumView.setSlotFilter(null); |
| mActionModeHandler.pause(); |
| mAlbumDataAdapter.pause(); |
| mAlbumView.pause(); |
| DetailsHelper.pause(); |
| /*if (!mGetContent) { |
| mActivity.getGalleryActionBar().disableAlbumModeMenu(true); |
| }*/ |
| |
| if (mSyncTask != null) { |
| mSyncTask.cancel(); |
| mSyncTask = null; |
| clearLoadingBit(BIT_LOADING_SYNC); |
| } |
| |
| hideEmptyAlbumToast(); |
| hideCameraButton(); |
| } |
| |
| @Override |
| protected void onDestroy() { |
| super.onDestroy(); |
| if (mAlbumDataAdapter != null) { |
| mAlbumDataAdapter.setLoadingListener(null); |
| } |
| mActionModeHandler.destroy(); |
| } |
| |
| private void initializeViews() { |
| mSelectionManager = new SelectionManager(mActivity, false); |
| mSelectionManager.setSelectionListener(this); |
| Config.TimeLinePage config = Config.TimeLinePage.get(mActivity); |
| mSlotView = new TimeLineSlotView(mActivity, config.slotViewSpec); |
| mAlbumView = new TimeLineSlotRenderer(mActivity, mSlotView, |
| mSelectionManager, config.labelSpec, config.placeholderColor); |
| mSlotView.setSlotRenderer(mAlbumView); |
| mRootPane.addComponent(mSlotView); |
| mSlotView.setListener(new TimeLineSlotView.SimpleListener() { |
| @Override |
| public void onDown(int index) { |
| TimeLinePage.this.onDown(index); |
| } |
| |
| @Override |
| public void onUp(boolean followedByLongPress) { |
| TimeLinePage.this.onUp(followedByLongPress); |
| } |
| |
| @Override |
| public void onSingleTapUp(int slotIndex, boolean isTitle) { |
| TimeLinePage.this.onSingleTapUp(slotIndex, isTitle); |
| } |
| |
| @Override |
| public void onLongTap(int slotIndex, boolean isTitle) { |
| TimeLinePage.this.onLongTap(slotIndex, isTitle); |
| } |
| }); |
| mActionModeHandler = new ActionModeHandler(mActivity, mSelectionManager); |
| mActionModeHandler.setActionModeListener(new ActionModeListener() { |
| @Override |
| public boolean onActionItemClicked(MenuItem item) { |
| return onItemSelected(item); |
| } |
| }); |
| } |
| |
| private void initializeData(Bundle data) { |
| mMediaSetPath = Path.fromString(data.getString(KEY_MEDIA_PATH)); |
| mMediaSet = mActivity.getDataManager().getMediaSet(mMediaSetPath); |
| if (mMediaSet == null) { |
| Utils.fail("MediaSet is null. Path = %s", mMediaSetPath); |
| } |
| mAlbumDataAdapter = new TimeLineDataLoader(mActivity, mMediaSet); |
| mSelectionManager.setSourceMediaSet(mMediaSet); |
| mSelectionManager.setTimeLineDataLoader(mAlbumDataAdapter); |
| //mSelectionManager.setAlbumDataAdapter(mAlbumDataAdapter); |
| mAlbumDataAdapter.setLoadingListener(new MyLoadingListener()); |
| mAlbumView.setModel(mAlbumDataAdapter); |
| } |
| |
| private void showDetails() { |
| mShowDetails = true; |
| if (mDetailsHelper == null) { |
| mDetailsHelper = new DetailsHelper(mActivity, mRootPane, mDetailsSource); |
| mDetailsHelper.setCloseListener(new CloseListener() { |
| @Override |
| public void onClose() { |
| hideDetails(); |
| } |
| }); |
| } |
| mDetailsHelper.show(); |
| } |
| |
| private void hideDetails() { |
| mShowDetails = false; |
| mDetailsHelper.hide(); |
| mAlbumView.setHighlightItemPath(null); |
| mSlotView.invalidate(); |
| } |
| |
| @Override |
| protected boolean onCreateActionBar(Menu menu) { |
| GalleryActionBar actionBar = mActivity.getGalleryActionBar(); |
| MenuInflater inflator = getSupportMenuInflater(); |
| if (mGetContent) { |
| inflator.inflate(R.menu.pickup, menu); |
| int typeBits = mData.getInt(GalleryActivity.KEY_TYPE_BITS, |
| DataManager.INCLUDE_IMAGE); |
| actionBar.setTitle(GalleryUtils.getSelectionModePrompt(typeBits)); |
| } else { |
| inflator.inflate(R.menu.album, menu); |
| actionBar.setTitle(R.string.timeline_title); |
| |
| FilterUtils.setupMenuItems(actionBar, mMediaSetPath, true); |
| //menu.findItem(R.id.action_group_by).setVisible(mShowClusterMenu); |
| menu.findItem(R.id.action_camera).setVisible(GalleryUtils.isAnyCameraAvailable(mActivity)); |
| menu.findItem(R.id.action_sync_picasa_albums).setVisible(true); |
| menu.findItem(R.id.action_view_type).setVisible(false); |
| } |
| |
| return true; |
| } |
| |
| private void prepareAnimationBackToFilmstrip(int slotIndex) { |
| if (mAlbumDataAdapter == null || !mAlbumDataAdapter.isActive(slotIndex)) return; |
| MediaItem item = mAlbumDataAdapter.get(slotIndex); |
| if (item == null) return; |
| TransitionStore transitions = mActivity.getTransitionStore(); |
| transitions.put(PhotoPage.KEY_INDEX_HINT, slotIndex); |
| transitions.put(PhotoPage.KEY_OPEN_ANIMATION_RECT, |
| mSlotView.getSlotRect(slotIndex, mRootPane)); |
| } |
| |
| private void switchToFilmstrip() { |
| // Invalid album, return back directly. |
| if (mAlbumDataAdapter.size() < 1) { |
| return; |
| } |
| |
| int targetPhoto = mSlotView.getVisibleStart(); |
| if (View.LAYOUT_DIRECTION_RTL == TextUtils |
| .getLayoutDirectionFromLocale(Locale.getDefault())) { |
| // Fetch corresponding index from another side, only in RTL |
| targetPhoto = mAlbumDataAdapter.size() - targetPhoto - 1; |
| } |
| prepareAnimationBackToFilmstrip(targetPhoto); |
| if(mLaunchedFromPhotoPage) { |
| onBackPressed(); |
| } else { |
| pickPhoto(targetPhoto, true); |
| } |
| } |
| |
| @Override |
| protected boolean onItemSelected(MenuItem item) { |
| switch (item.getItemId()) { |
| case android.R.id.home: { |
| onUpPressed(); |
| return true; |
| } |
| case R.id.action_cancel: |
| mActivity.getStateManager().finishState(this); |
| return true; |
| case R.id.action_select: |
| mSelectionManager.setAutoLeaveSelectionMode(true); |
| mSelectionManager.enterSelectionMode(); |
| return true; |
| case R.id.action_slideshow: { |
| Bundle data = new Bundle(); |
| data.putString(SlideshowPage.KEY_SET_PATH, |
| mMediaSetPath.toString()); |
| data.putBoolean(SlideshowPage.KEY_REPEAT, true); |
| mActivity.getStateManager().startStateForResult( |
| SlideshowPage.class, REQUEST_SLIDESHOW, data); |
| return true; |
| } |
| case R.id.action_details: { |
| if (mShowDetails) { |
| hideDetails(); |
| } else { |
| showDetails(); |
| } |
| return true; |
| } |
| case R.id.action_camera: { |
| GalleryUtils.startCameraActivity(mActivity); |
| return true; |
| } |
| default: |
| return false; |
| } |
| } |
| |
| @Override |
| protected void onStateResult(int request, int result, Intent data) { |
| switch (request) { |
| case REQUEST_SLIDESHOW: |
| { |
| // data could be null, if there is no images in the album |
| if (data == null) return; |
| mFocusIndex = data.getIntExtra(SlideshowPage.KEY_PHOTO_INDEX, 0); |
| mSlotView.setCenterIndex(mFocusIndex); |
| break; |
| } |
| case REQUEST_PHOTO: { |
| if (data == null) return; |
| mFocusIndex = data.getIntExtra(PhotoPage.KEY_RETURN_INDEX_HINT, 0); |
| mSlotView.makeSlotVisible(mFocusIndex); |
| break; |
| } |
| case REQUEST_DO_ANIMATION: { |
| mSlotView.startRisingAnimation(); |
| break; |
| } |
| } |
| } |
| |
| @Override |
| public void onSelectionModeChange(int mode) { |
| switch (mode) { |
| case SelectionManager.ENTER_SELECTION_MODE: { |
| mActionModeHandler.startActionMode(); |
| performHapticFeedback(HapticFeedbackConstants.LONG_PRESS); |
| ((GalleryActivity)mActivity).toggleNavDrawer(false); |
| break; |
| } |
| case SelectionManager.LEAVE_SELECTION_MODE: { |
| mActionModeHandler.finishActionMode(); |
| ((GalleryActivity)mActivity).toggleNavDrawer(true); |
| mRootPane.invalidate(); |
| break; |
| } |
| case SelectionManager.SELECT_ALL_MODE: { |
| mActionModeHandler.updateSupportedOperation(); |
| mRootPane.invalidate(); |
| break; |
| } |
| } |
| } |
| |
| @Override |
| public void onSelectionChange(Path path, boolean selected) { |
| int count = mSelectionManager.getSelectedCount(); |
| String format = mActivity.getResources().getQuantityString( |
| R.plurals.number_of_items_selected, count); |
| mActionModeHandler.setTitle(String.format(format, count)); |
| mActionModeHandler.updateSupportedOperation(path, selected); |
| } |
| |
| @Override |
| public void onSyncDone(final MediaSet mediaSet, final int resultCode) { |
| Log.d(TAG, "onSyncDone: " + Utils.maskDebugInfo(mediaSet.getName()) + " result=" |
| + resultCode); |
| mActivity.runOnUiThread(new Runnable() { |
| @Override |
| public void run() { |
| GLRoot root = mActivity.getGLRoot(); |
| root.lockRenderThread(); |
| mSyncResult = resultCode; |
| try { |
| if (resultCode == MediaSet.SYNC_RESULT_SUCCESS) { |
| mInitialSynced = true; |
| } |
| clearLoadingBit(BIT_LOADING_SYNC); |
| showSyncErrorIfNecessary(mLoadingFailed); |
| } finally { |
| root.unlockRenderThread(); |
| } |
| } |
| }); |
| } |
| |
| // Show sync error toast when all the following conditions are met: |
| // (1) both loading and sync are done, |
| // (2) sync result is error, |
| // (3) the page is still active, and |
| // (4) no photo is shown or loading fails. |
| private void showSyncErrorIfNecessary(boolean loadingFailed) { |
| if ((mLoadingBits == 0) && (mSyncResult == MediaSet.SYNC_RESULT_ERROR) && mIsActive |
| && (loadingFailed || (mAlbumDataAdapter.size() == 0))) { |
| Toast.makeText(mActivity, R.string.sync_album_error, |
| Toast.LENGTH_LONG).show(); |
| } |
| } |
| |
| private void setLoadingBit(int loadTaskBit) { |
| mLoadingBits |= loadTaskBit; |
| } |
| |
| private void clearLoadingBit(int loadTaskBit) { |
| mLoadingBits &= ~loadTaskBit; |
| if (mLoadingBits == 0 && mIsActive) { |
| if (mAlbumDataAdapter.size() == 0) { |
| mShowedEmptyToastForSelf = true; |
| showEmptyAlbumToast(Toast.LENGTH_LONG); |
| mSlotView.invalidate(); |
| } else { |
| hideEmptyAlbumToast(); |
| } |
| return; |
| } |
| // Hide the empty album toast if we are in the root instance of |
| // AlbumSetPage and the album is no longer empty (for instance, |
| // after a sync is completed and web albums have been synced) |
| if (mShowedEmptyToastForSelf) { |
| mShowedEmptyToastForSelf = false; |
| hideEmptyAlbumToast(); |
| //hideCameraButton(); |
| } |
| } |
| |
| private class MyLoadingListener implements LoadingListener { |
| @Override |
| public void onLoadingStarted() { |
| setLoadingBit(BIT_LOADING_RELOAD); |
| mLoadingFailed = false; |
| } |
| |
| @Override |
| public void onLoadingFinished(boolean loadingFailed) { |
| clearLoadingBit(BIT_LOADING_RELOAD); |
| mLoadingFailed = loadingFailed; |
| showSyncErrorIfNecessary(loadingFailed); |
| } |
| } |
| |
| private class MyDetailsSource implements DetailsHelper.DetailsSource { |
| private int mIndex; |
| |
| @Override |
| public int size() { |
| return mAlbumDataAdapter.size() - mAlbumDataAdapter.getTimeLineTitlesCount(); |
| } |
| |
| @Override |
| public int setIndex() { |
| if (mSelectionManager.getSelected(false) == null) return -1; |
| Path id = mSelectionManager.getSelected(false).get(0); |
| mIndex = mAlbumDataAdapter.findItem(id); |
| int indexToDisplay = mAlbumDataAdapter.getIndex(id, false); |
| return indexToDisplay; |
| } |
| |
| @Override |
| public MediaDetails getDetails() { |
| // this relies on setIndex() being called beforehand |
| if (mIndex < 0) return null; |
| MediaObject item = mAlbumDataAdapter.get(mIndex); |
| if (item != null) { |
| mAlbumView.setHighlightItemPath(item.getPath()); |
| return item.getDetails(); |
| } else { |
| return null; |
| } |
| } |
| } |
| |
| @Override |
| public void onAlbumModeSelected(int mode) { |
| if (mode == GalleryActionBar.ALBUM_FILMSTRIP_MODE_SELECTED) { |
| switchToFilmstrip(); |
| } |
| } |
| |
| private WeakReference<Toast> mEmptyAlbumToast = null; |
| |
| private void showCameraButton() { |
| if (mCameraButton == null && !setupCameraButton()) return; |
| mCameraButton.setVisibility(View.VISIBLE); |
| } |
| |
| private void hideCameraButton() { |
| if (mCameraButton == null) return; |
| mCameraButton.setVisibility(View.GONE); |
| } |
| |
| private boolean setupCameraButton() { |
| if (!GalleryUtils.isAnyCameraAvailable(mActivity)) return false; |
| RelativeLayout galleryRoot = (RelativeLayout)mActivity.findViewById(R.id.gallery_root); |
| if (galleryRoot == null) return false; |
| |
| mCameraButton = new Button(mActivity); |
| mCameraButton.setText(R.string.camera_label); |
| mCameraButton.setCompoundDrawablesWithIntrinsicBounds(0, R.drawable.frame_overlay_gallery_camera, 0, 0); |
| mCameraButton.setOnClickListener(new OnClickListener() { |
| @Override |
| public void onClick(View arg0) { |
| GalleryUtils.startCameraActivity(mActivity); |
| } |
| }); |
| RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams( |
| RelativeLayout.LayoutParams.WRAP_CONTENT, |
| RelativeLayout.LayoutParams.WRAP_CONTENT); |
| lp.addRule(RelativeLayout.CENTER_IN_PARENT); |
| galleryRoot.addView(mCameraButton, lp); |
| return true; |
| } |
| |
| private void showEmptyAlbumToast(int toastLength) { |
| RelativeLayout galleryRoot = (RelativeLayout) mActivity.findViewById(R.id.gallery_root); |
| if (galleryRoot == null) return; |
| if (tvEmptyAlbum == null) { |
| tvEmptyAlbum = new TextView(mActivity); |
| tvEmptyAlbum.setText(R.string.tvEmptyAlbum); |
| tvEmptyAlbum.setTextColor(Color.parseColor("#8A000000")); |
| tvEmptyAlbum.setGravity(Gravity.CENTER); |
| tvEmptyAlbum.setTextSize(TypedValue.COMPLEX_UNIT_SP, 20); |
| RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams( |
| RelativeLayout.LayoutParams.WRAP_CONTENT, |
| RelativeLayout.LayoutParams.WRAP_CONTENT); |
| lp.addRule(RelativeLayout.CENTER_IN_PARENT); |
| galleryRoot.addView(tvEmptyAlbum, lp); |
| } |
| tvEmptyAlbum.setVisibility(View.VISIBLE); |
| } |
| |
| private void hideEmptyAlbumToast() { |
| if (tvEmptyAlbum != null) { |
| tvEmptyAlbum.setVisibility(View.GONE); |
| } |
| } |
| } |