A library to create simple alerts easily with some customization. Written in Kotlin but works for both Kotlin and Java
Grab via Gradle:
implementation 'com.irozon.alertview:alertview:1.0.1'
implementation 'com.android.support:design:27.1.0'
val alert = AlertView("Title", "Message", AlertStyle.BOTTOM_SHEET)
alert.addAction(AlertAction("Action 1", AlertActionStyle.DEFAULT, { action ->
// Action 1 callback
}))
alert.addAction(AlertAction("Action 2", AlertActionStyle.NEGATIVE, { action ->
// Action 2 callback
}))
alert.show(this)
Using Lambda
AlertView alert = new AlertView("Title", "Message", AlertStyle.BOTTOM_SHEET);
alert.addAction(new AlertAction("Action 1", AlertActionStyle.DEFAULT, action -> {
// Action 1 callback
}));
alert.addAction(new AlertAction("Action 2", AlertActionStyle.NEGATIVE, action -> {
// Action 2 callback
}));
alert.show(this);
There are three alert styles
AlertStyle.BOTTOM_SHEET
AlertStyle.IOS
AlertStyle.DIALOG
Three types of Alert Action button styles
AlertActionStyle.POSITIVE
AlertActionStyle.NEGATIVE
AlertActionStyle.DEFAULT
AlertTheme.LIGHT
AlertTheme.DARK
Set theme by
alert.setTheme(AlertTheme.DARK)
Default theme is LIGHT
If you are using AlertView in your app and would like to be listed here, please let me know by email or opening a new issue!
- Hammad Akram - (https://github.com/hamadakram)
Pull requests are welcome! Feel free to browse through open issues to look for things that need work. If you have a feature request or bug, please open a new issue so i can track it.
Copyright 2018 Irozon, Inc.
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.