Create Singleton Class for Toast Message

suggest change

Introduction

Toast messages are the most simple way of providing feedback to the user. By default, Android provide gray color message toast where we can set the message and the duration of the message. If we need to create more customizable and reusable toast message, we can implement it by ourselves with the use of a custom layout. More importantly when we are implementing it, the use of Singelton design pattern will make it easy for maintaining and development of the custom toast message class.

Syntax

Parameters

| Parameter | details | | —— | —— | | context | Relevant context which needs to display your toast message. If you use this in the activity pass “this” keyword or If you use in fragement pass as “getActivity()”. | |view | Create a custom view and pass that view object to this. |gravity| Pass the gravity position of the toaster. All the position has added under the Gravity class as the static variables . The Most common positions are Gravity.TOP, Gravity.BOTTOM, Gravity.LEFT, Gravity.RIGHT. | xOffset | Horizontal offset of the toast message. | yOffset | Vertical offset of the toast message. |duration | Duration of the toast show. We can set either Toast.LENGTH_SHORT or Toast.LENGTH_LONG

Remarks

Toast message is a simple way of providing feedback to user about something is happening. If you need a more advanced way to give feedback you can use dialogs or snackbar.

To get more details about the toast message please check this documentation. https://developer.android.com/reference/android/widget/Toast.html

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents