ActivityAnimation


Source link: https://github.com/brucetoo/ActivityAnimation

ImageBrowse fragment can use to browse image with transition animation

The same as the latest android WeChat moments image browse effect

FINAL EFFECT

Feature: Big improvement

Add thumbnail support when full image is not cache just like WeChat does.

New add padding and margin support in ImageBrowseFragment

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.. 

#USAGE for fragment

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.disenable(false);
//disable touch

2.Handle PhotoView Click

 //view is PhotoView normally,when load image from remote,you need call view.enable() 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, ImageBrowseFragment.getInstance(bundle), "ViewPagerFragment")

.addToBackStack(null).commit();

  
}
 

More detail please see demo code.

#USEAGE for Dialog fragment

handle where you click

 root.post(new Runnable() {
 // in case root view not inflate complete

  @Override

  public void run() {

Bundle bundle = new Bundle();

bundle.putStringArrayList(ImageInfo.INTENT_IMAGE_URLS, imgList);

final ImageInfo preImgInfo = ((PhotoView) view).getInfo();

bundle.putParcelable(ImageInfo.INTENT_CLICK_IMAGE_INFO, preImgInfo);

bundle.putInt(ImageInfo.INTENT_CLICK_IMAGE_POSITION, position);

imgImageInfos.clear();

for (int i = 0; i < imgList.size();
 i++) {

 imgImageInfos.add(((PhotoView) parent.getChildAt(i)).getInfo());

}

bundle.putParcelableArrayList(ImageInfo.INTENT_IMAGE_INFOS, imgImageInfos);

int[] position = new int[2];

root.getLocationOnScreen(position);

//Must correct the ImageInfo in DialogFragment

preImgInfo.correct(position, getStatusBarHeight());

for (ImageInfo item : imgImageInfos) {

 item.correct(position,getStatusBarHeight());

}

ImageBrowseDialogFragment.newInstance(bundle).show(getSupportFragmentManager(), ImageBrowseDialogFragment.class.getSimpleName());

  
}

 
}
);
 

See ImageBrowseDialogFragment If the anchor activity is fullscreen,we need care about if ImageBrowseDialogFragment is fullscreen

 @Override

 public void onActivityCreated(Bundle savedInstanceState) {

  super.onActivityCreated(savedInstanceState);

  /**NOTE if the anchor activity is FullScreen,the following code must be used. 

 and {
@link ImageInfo#correct(int[], int)
}
 the second params must be Zero.. 

 */
//

getDialog().getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);


  getDialog().getWindow().setLayout(WindowManager.LayoutParams.MATCH_PARENT, WindowManager.LayoutParams.MATCH_PARENT);

 
}
 

#NOTE if you use ReboundViewPager to get rebound effect,this way may cause a problem when doing scale operation at first or last PhotoView try use ViewPager instead

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

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

License

Copyright 2015-2016 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.

Resources

MultiFontView library can be used to select custom fonts for the view dynamically in your XML. The library loads the custom fonts using a font cache.

This dial widget is an advanced rotation control that you can easily include into any Android project in the form of an AAR file. You can think of this Dial control as a gesture library that is just concerned with rotation; having all of the conceivable behaviours you could possibly want in a rotation control.

Lottie is a mobile library for Android and iOS that parses Adobe After Effects animations exported as json with Bodymovin and renders them natively on mobile!

For the first time, designers can create and ship beautiful animations without an engineer painstakingly recreating it by hand.

This is a simple FidgetSpinner view.

CircularProgressbar project lets you to create a circular progressbar in the simplest way.

This library uses the power of RxJava to wrap an Observable android Activity#onActivityResult() method so you can easily request something from other activities and have the result right there in your observabale's subscribe() method.

Main Benefits

  • Don't Break The Chain: Prevents you to split your code between the permission request and the result handling. Currently without this library you have to request in one place and handle the result in Activity#onActivityResult().
  • Reactive: All what RX provides about transformation, filter, chaining...

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes