How to create popup message using Alerter Library in android

In this article, we learn about how to create a popup message with the help of Alerter Library. It is better to use Alerter than using Toast or Snackbar in cases if some alert messages are to be displayed to the user. We can add various onClickListners to our alerter message which makes it better and it also has nice appealing UI.
- Add the support Library in build.gradle file and add dependency in the dependencies section. This library facilitates easy integration of Alert View in the app. The alert view is customizable and it is displayed over the ongoing activity in the app. This library is also compatible with AndroidX.
dependencies {implementation 'com.tapadoo.android:alerter:2.0.4'} - Now add the following code in the activity_main.xml file. This codes add a button in the MainActivity and if the button is clicked then showAlerter function is invoked.
activity_main.xml
<?xmlversion="1.0"encoding="utf-8"?><androidx.constraintlayout.widget.ConstraintLayoutandroid:layout_width="match_parent"android:layout_height="match_parent"tools:context=".MainActivity"><Buttonandroid:id="@+id/button"android:layout_width="wrap_content"android:layout_height="wrap_content"android:onClick="showAlerter"android:text="Show Alerter"app:layout_constraintBottom_toBottomOf="parent"app:layout_constraintLeft_toLeftOf="parent"app:layout_constraintRight_toRightOf="parent"app:layout_constraintTop_toTopOf="parent"/></androidx.constraintlayout.widget.ConstraintLayout> - Now add the following code in the MainActivity.java file. It defines the showAlerter function. This function creates the Alerter. Various methods are called to initialize different properties of the Alerter. setTitle sets the title, setText sets the text shown below the title, setIcon sets the icon, etc. Various onClickListeners are also attached so that you can do something in response of the users action.
MainActivity.java
packageorg.zambiatek.gfgAlerter;importandroidx.appcompat.app.AppCompatActivity;importandroid.os.Bundle;importandroid.view.View;importandroid.widget.Button;importcom.tapadoo.alerter.Alerter;importcom.tapadoo.alerter.OnHideAlertListener;importcom.tapadoo.alerter.OnShowAlertListener;publicclassMainActivityextendsAppCompatActivity {Button button;@OverrideprotectedvoidonCreate(Bundle savedInstanceState){super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);button = findViewById(R.id.button);}publicvoidshowAlerter(View v){Alerter.create(this).setTitle("Alert Title").setText("Alert Text").setIcon(R.drawable.ic_android_black_24dp).setBackgroundColorRes(R.color.colorAccent).setDuration(3000).setOnClickListener(newView.OnClickListener() {@OverridepublicvoidonClick(View v){// do something when// Alerter message was clicked}}).setOnShowListener(newOnShowAlertListener() {@OverridepublicvoidonShow(){// do something when// Alerter message shows}}).setOnHideListener(newOnHideAlertListener() {@OverridepublicvoidonHide(){// do something when// Alerter message hides}}).show();}}
Output:




