FlickableDialog


Source link: https://github.com/t-kurimura/flickabledialog

FlickableDialog

This dialog can flick and make it easy to dismiss sensuously. You can show your infromation to users with minimum stress. And, users can swipe dialog to select options extremley easy!

Download

Gradle :

compile 'com.tkurimura:flickabledialog:0.9.0' 

Require

Java7 and Android minimum API level(SDK) 11 (Andorid 3.0)

Usecase demo

AlertDialog Premium appeal Review popup

Usage

Show

  • Call from Activity

Attention to use getSupportFragmentManager() as argument in dialog.show(,);

// simple way to call FlickableDialog dialog = FlickableDialog.newInstance(R.layout.your_dialog_layout);
 dialog.show(getSupportFragmentManager(),dialog.getClass().getSimpleName());
// you can define detail flicking settings  FlickableDialog dialog = FlickableDialog.newInstance(  R.layout.your_dialog_layout, // dialog content layout resource Id  800f, // the area raidus dialog will come back to original position (default : 700f)  50f, // slope when you flick dialog to side direction (default : 30f)  R.color.colorAccent);
 // background color of the area where dialog dismiss if you touch  dialog.show(getSupportFragmentManager(),dialog.getClass().getSimpleName());
  
  • Call from Fragment

Attention to use getChildFragmentManager() as argument in dialog.show(,);

// simple way to call FlickableDialog dialog = FlickableDialog.newInstance(R.layout.your_dialog_layout);
 dialog.show(getChildFragmentManager(),dialog.getClass().getSimpleName());
// you can define detail flicking settings  FlickableDialog dialog = FlickableDialog.newInstance(  R.layout.your_dialog_layout, // dialog content layout resource Id  800f, // the area raidus dialog will come back to original position (default : 700f)  50f, // slope when you flick dialog to side direction (default : 30f)  R.color.colorAccent);
 // background color of the area where dialog dismiss if you touch  dialog.show(getChildFragmentManager(),dialog.getClass().getSimpleName());

Callback

you implement FlickableDialogListener.OnFlickedXDirection in Activity or Fragment.

  • On flicked
HogeActivity extend Activity implement FlickableDialogListener.OnFlickedXDirection{

@Override
public void onFlickableDialogFlicked(FlickableDialogListener.X_DIRECTION xDirection) {

// do something according to flicked direction
if(xDirection.equals(LEFT_BOTTOM)){

 doSomething();

}
  
}
 
}
  • On Cancel

onCancel is callbacked when user touched outside or

FugaFragment extend Fragment implement FlickableDialogListener.OnCanceled{

@Override
public void onFlickableDialogCanceled() {

getActivity().finish();
  
}
 
}

Custom

You can extend FlickableDialog to your custom dialog.

public class FlickableHogeDialog extends FlickableDialog {

 public static FlickableHogeDialog newInstance(Fragment fragment){

FlickableHogeDialog flickableHogeDialog = new FlickableHogeDialog();

  Bundle bundle = new Bundle();

  bundle.putInt(LAYOUT_RESOURCE_KEY,R.layout.your_custom_layout);

  flickableHogeDialog.setTargetFragment(fragment,0);

  flickableHogeDialog.setArguments(bundle);

return flickableHogeDialog;

}

 @Override
 public Dialog onCreateDialog(Bundle savedInstanceState) {

Dialog dialog = super.onCreateDialog(savedInstanceState);

Button button = (Button) dialog.findViewById(R.id.your_custom_complete_button);

button.setOnClickListener(new View.OnClickListener() {

  @Override

public void onClick(View v) {

 Toast.makeText(getContext(),"You tapped Complete button!",Toast.LENGTH_SHORT).show();

 dismiss();

  
}

}
);

  return dialog;

}

 @Override
public void onFlicking(float verticalPercentage, float horizontalPercentage) {

 // callback when dialog moves according to flicks
 changeStatus();

}

 @Override
public void onOriginBack() {

 // when dialog position came back to default position

}

License

The MIT License (MIT) Copyright (c) 2016 Takahisa Kurimura  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  

Resources

Android-Icon-Fonts project contains material and Holo iconic fonts.

Manual ProGuard configuration is not a pleasant task. It requires a lot of time, patience and strong Google-fu to search dark corners of Internet for magic incantations that make ProGuard happy and don't screw up your build. A bottle of alcoholic beverage also comes in handy.

We just want to say "ProGuard this for me, please". And that's what this plugin strives to do.

If you do any serious Android development, you've probably used ProGuard to obfuscate, optimise and shrink your application. In that case it's also very likely that ProGuarding your app has broken your release builds, took a few hours of your time away while pulling your hair out.

Squad leader includes two annotations that you can add to your code to specify that you want to @Keep a class, method or field and it's name. There's also a @KeepName annotation that does the same, but only if the annotated element is actually used in your code.

Android library for detecting and reporting long running SQLite queries.

If some of your queries takes longer than the threshold specified in the CerberusCursorFactory constructor, the report containing the offending query, elapsed query time, stack trace, and the result of EXPLAIN QUERY PLAN sqlite query will be dumped into the logcat.

Intel XDK HTML5 Cross-platform Development Tool provides a simplified workflow to enable developers to easily design, debug, build, and deploy HTML5 web and hybrid apps across multiple app stores, and form factor devices.

Experience Intel XDK - the easy and fast way to get your apps to market.

Do you have a library that needs some initial setup like an api key or credentials and without these the library won't work? Now you can use ArrowLogger to highlight this to the developers that use your library.

ArrowLogger allows you to manicly shake your hands infront of your users face and be like "Helllooo you missed this!".

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