Skip to content

ActivityAnimation helper and Picture preview helper like transition on Lollipop..

Notifications You must be signed in to change notification settings

xuhuawei131/ActivityAnimation

 
 

Repository files navigation

ActivityAnimation helper and ImageView transition With ViewPager

IGNORE APP NAME... Just see WeChat IOS IOS IOS(not android) share moments,When u click friend's picture moments or see gift below.. Android Arsenal

FINAL EFFECT

EFFECT

REBOUND EFFECT

REBOUND

#ImageView transition with ViewPager click view to see detail in other layout...

Feature: Working on...

1.original view: just like normal imageview but with zoom effect
2.detail view:
① single click back to pre layout with shrink effect
② double click to zoom effect(*2.5)
③ more gesture see details code
3.if u have more than one imageview can display with ViewPager
random click original imageview,and scroll ViewPager to any position,
than u press back key,or single click detail,u will see original view's
position is the same as ViewPager‘s current position.

4.load image from remote u can't click item until it finished

5.ViewPager has rebound effect when edge of ViewPager is available..

About fragment listening onBackPressed see this gist https://gist.github.com/brucetoo/f7c9bcabe2ce51610ccf

#USAGE

1.Handle init PhotoView(also available xml)

    PhotoView p = new PhotoView(MainActivity.this);
    p.setLayoutParams(new AbsListView.LayoutParams((int) (getResources().getDisplayMetrics().density * 100), (int) (getResources().getDisplayMetrics().density * 100)));
    p.setScaleType(ImageView.ScaleType.CENTER_CROP);
    p.setEnabled(false);//u can't click view until image load completed
    ...//load image and put it into PhotoView
    p.touchEnable(false);//disable touch

2.Handle PhotoView Click

    //view is PhotoView normally,when load inmage from remote,you need call view.setEnable(false) to 
    //let PhotoView can't be clicked util it load completed
    if(view.isEnabled()) { 
    Bundle bundle = new Bundle();
    bundle.putStringArrayList("imgs", imgList);//all PhotoView url(remote)
    bundle.putParcelable("info", ((PhotoView) view).getInfo());//click PhotoView ImageInfo
    bundle.putInt("position", position);//click position
    imgImageInfos.clear();
    //NOTE:if imgList.size >= the visible count in single screen,i will cause NullPointException
    //because item out of screen have been replaced/reused
    for (int i = 0; i < imgList.size(); i++) {
        imgImageInfos.add(((PhotoView) parent.getChildAt(i)).getInfo());//remember all PhotoView ImageInfo
    }
    bundle.putParcelableArrayList("infos", imgImageInfos);
    //attach fragment to Window
    getSupportFragmentManager().beginTransaction().replace(Window.ID_ANDROID_CONTENT, ViewPagerFragment.getInstance(bundle), "ViewPagerFragment")
                                .addToBackStack(null).commit();
    }

3.If u use universalimageloader to get remote image,now is more convenient

dependencies {
    compile 'com.brucetoo:library:1.0.0'{
      exclude module: 'support-v4'
    }
}
 
 Then use ViewPagerFragment like ’Handle PhotoView Click‘
 

#ActivityAnimation Usage

  Pre activity onCreate()..
  ActivityTransitionEnterHelper.with(this).fromView(fromView).imageUrl(imgUrl).start(Test.class);
  Sub activity onCreate()..
  transitionExitHelper = ActivityTransitionExitHelper.with(getIntent()).toView(mImageView).background(mBackgroudnView).start(savedInstanceState);
                      @Override
                      public void onBackPressed() {
                          transitionExitHelper.runExitAnimation(new Runnable() {
                              @Override
                              public void run() {
                                  finish();
                              }
                          });
                      }
                      @Override
                      public void finish() {
                          super.finish();
                          // override transitions to skip the standard window animations
                          overridePendingTransition(0, 0);
                      }

#TODO 1.add Loading State into viewPager

#THANKS PhotoView from https://github.com/bm-x/PhotoView

Custom Activity Animations from https://www.youtube.com/watch?v=CPxkoe2MraA

License

Copyright 2015 Bruce too

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.

See LICENSE file for details.

About

ActivityAnimation helper and Picture preview helper like transition on Lollipop..

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%