Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

A simple library for creating animated warnings/dialogs/alerts for Android.

License

NotificationsYou must be signed in to change notification settings

emre1512/Noty

Repository files navigation

https://github.com/emre1512/Notyhttps://github.com/emre1512/Notyhttps://www.apache.org/licenses/LICENSE-2.0https://github.com/emre1512/Noty

A simple library for creating animated warnings/notifications for Android.

Examples

Show me codeShow me codeShow me code

Show me codeShow me codeShow me code

Installation

  • Get it via gradle:compile 'com.emredavarci:noty:1.0.3'

Usage

Simplest

Noty.init(YourActivity.this,"Your warning message",yourLayout,Noty.WarningStyle.SIMPLE).show();

Simple with action

Noty.init(YourActivity.this,"Your warning message",yourLayout,Noty.WarningStyle.ACTION).setActionText("OK").show();

Some customization

Noty.init(YourActivity.this,"Your warning message",yourLayout,Noty.WarningStyle.ACTION)        .setActionText("OK")        .setWarningBoxBgColor("#ff5c33")        .setWarningTappedColor("#ff704d")        .setWarningBoxPosition(Noty.WarningPos.BOTTOM)        .setAnimation(Noty.RevealAnim.FADE_IN,Noty.DismissAnim.BACK_TO_BOTTOM,400,400)        .show();

Add tap listener

Noty.init(YourActivity.this,"Your warning message",yourLayout,Noty.WarningStyle.SIMPLE)        .setTapListener(newNoty.TapListener() {@OverridepublicvoidonTap(Notywarning) {// do something...            }        }).show();

Add click listener

Noty.init(YourActivity.this,"Your warning message",yourLayout,Noty.WarningStyle.ACTION)        .setClickListener(newNoty.ClickListener() {@OverridepublicvoidonClick(Notywarning) {// do something...            }        }).show();

Add animation listener

Noty.init(YourActivity.this,"Your warning message",yourLayout,Noty.WarningStyle.ACTION)        .setAnimationListener(newNoty.AnimListener() {@OverridepublicvoidonRevealStart(Notywarning) {// Start of reveal animation            }@OverridepublicvoidonRevealEnd(Notywarning) {// End of reveal animation            }@OverridepublicvoidonDismissStart(Notywarning) {// Start of dismiss animation            }@OverridepublicvoidonDismissEnd(Notywarning) {// End of dismiss animation            }        }).show();

Detailed Documentation

  • Detailed documentation can be found atWiki.

LICENSE

Copyright 2017 M. Emre Davarci

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, softwaredistributed 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 andlimitations under the License.

Releases

No releases published

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp