Alerter - An Android Alerter Library, now in Kotlin!
An Android Alerting Library
Under MIT License
By Tapadoo
An Android Alerting Library
Under MIT License
By Tapadoo
Alerter - An Android Alerter Library, now in Kotlin!
This library aims to overcome the limitations of Toasts and Snackbars, while reducing the
complexity of your layouts.
With simplicity in mind, the Alerter employs the builder pattern to facilitate easy integration into any app.
A customisable Alert View is dynamically added to the Decor View of the Window, overlaying all content.
Include the JitPack.io Maven repo in your project's build.gradle file
groovy
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
Then add this dependency to your app's build.gradle file
groovy
dependencies {
implementation 'com.github.tapadoo:alerter:$current-version'
}
From an Activity -
kotlin
Alerter.create([email protected])
.setTitle("Alert Title")
.setText("Alert text...")
.show()
Or from a Fragment -
kotlin
Alerter.create(activity)
.setTitle("Alert Title")
.setText("Alert text...")
.show()
To check if an alert is showing -
kotlin
Alerter.isShowing()
To hide a currently showing Alert -
kotlin
Alerter.hide()
kotlin
Alerter.create([email protected])
.setTitle("Alert Title")
.setText("Alert text...")
.setBackgroundColorRes(R.color.colorAccent) // or setBackgroundColorInt(Color.CYAN)
.show()
kotlin
Alerter.create([email protected])
.setText("Alert text...")
.setIcon(R.drawable.alerter_ic_mail_outline)
.setIconColorFilter(0) // Optional - Removes white tint
.setIconSize(R.dimen.custom_icon_size) // Optional - default is 38dp
.show()
kotlin
Alerter.create([email protected])
.setTitle("Alert Title")
.setText("Alert text...")
.setDuration(10000)
.show()
kotlin
Alerter.create([email protected])
.setText("Alert text...")
.show()
kotlin
Alerter.create([email protected])
.setTitle("Alert Title")
.setText("Alert text...")
.setDuration(10000)
.setOnClickListener(View.OnClickListener {
Toast.makeText([email protected], "OnClick Called", Toast.LENGTH_LONG).show();
})
.show()
kotlin
Alerter.create([email protected])
.setTitle("Alert Title")
.setText("The alert scales to accommodate larger bodies of text. " +
"The alert scales to accommodate larger bodies of text. " +
"The alert scales to accommodate larger bodies of text.")
.show()
kotlin
Alerter.create([email protected])
.setTitle("Alert Title")
.setText("Alert text...")
.setEnterAnimation(R.anim.alerter_slide_in_from_left)
.setExitAnimation(R.anim.alerter_slide_out_to_right)
.show()
kotlin
Alerter.create([email protected])
.setTitle("Alert Title")
.setText("Alert text...")
.setDuration(10000)
.setOnShowListener(OnShowAlertListener {
Toast.makeText([email protected], "Show Alert", Toast.LENGTH_LONG).show()
})
.setOnHideListener(OnHideAlertListener {
Toast.makeText([email protected], "Hide Alert", Toast.LENGTH_LONG).show()
})
.show()
kotlin
Alerter.create([email protected])
.setTitle("Alert Title")
.setTitleAppearance(R.style.AlertTextAppearance_Title)
.setTitleTypeface(Typeface.createFromAsset(getAssets(), "Pacifico-Regular.ttf"))
.setText("Alert text...")
.setTextAppearance(R.style.AlertTextAppearance_Text)
.setTextTypeface(Typeface.createFromAsset(getAssets(), "ScopeOne-Regular.ttf"))
.show()
kotlin
Alerter.create([email protected])
.setTitle("Alert Title")
.setText("Alert text...")
.enableSwipeToDismiss()
.show()
kotlin
Alerter.create([email protected])
.setTitle("Alert Title")
.setText("Alert text...")
.enableProgress(true)
.setProgressColorRes(R.color.colorAccent)
.show()
kotlin
Alerter.create([email protected])
.setTitle(R.string.title_activity_example)
.setText("Alert text...")
.addButton("Okay", R.style.AlertButton, View.OnClickListener {
Toast.makeText([email protected], "Okay Clicked", Toast.LENGTH_LONG).show()
})
.addButton("No", R.style.AlertButton, View.OnClickListener {
Toast.makeText([email protected], "No Clicked", Toast.LENGTH_LONG).show()
})
.show()
kotlin
Alerter.create([email protected], R.layout.custom_layout)
.setBackgroundColorRes(R.color.colorAccent)
.also { alerter ->
val tvCustomView = alerter.getLayoutContainer()?.tvCustomLayout
tvCustomView?.setText(R.string.with_custom_layout)
}
.show()
Please read this if you're reporting an issue, or thinking of contributing!
See the LICENSE file for license rights and limitations (MIT).
Copyright 2017 Tapadoo, Dublin.