MukkiaSevaigal alternatives and similar packages
Based on the "Toast Widget" category.
Alternatively, view MukkiaSevaigal alternatives based on common mentions on social networks and blogs.
-
SuperToasts
A library that extends the Android toast framework. -
Android-AppMsg
In-layout notifications. Based on Toast notifications and article by Cyril Mottier (http://android.cyrilmottier.com/?p=773). -
loadtoast
Pretty material design toasts with feedback animations -
MessageBar
An Android Toast replacement, similar to the one seen in the GMail app. -
Literally Toast
๐ The missing toast library for Android. -
Dynamic Toasts
Custom toasts with color and icon on Android. -
FloatingToast-Android
Android library to create customizable floating animated toasts like in Clash Royale app -
CoolToast
A really simple library that help you to display a custom toast with many colors (for : success, warning, danger, info, dark, light, primary...etc ), or with rounded corners, or event with image. -
FabToast
Attractive, stylish and customizable toast library for Android.
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of MukkiaSevaigal or a related project?
README
MukkiaSevaigal
Android Utility library for commonly used functions
Features:
You can easily:
- Toast Messages
- Log
- Show SnackBar
- Save to Preferences
- Retrieve saved value from Preferences
- and many more utility functions.
Requirements:
This library works form API-14
Getting Started :
To use this library simply import it by placing the following line under dependencies in your app module's build.gradle file
This library is hosted in jCenter
dependencies {
implementation 'yogesh.firzen:MukkiyaSevaigal:3.0.3'
}
If any problem occured while importing please add this line to your app module's build.gradle file
repositories {
maven {url "https://dl.bintray.com/firzenyogesh/maven"}
}
Usage:
- For Toasts:
M.T(context,"Hello World");
- For Logs:
M.L("TAG","Hello World!");
- For SnackBar:
M.S(activityView,"Hello World");
- To save a value in Preferences:
P.save(context,"key",value);
- To retreive value from Preferences:
P.getInt(context,"key");
P.getString(context,"key");
P.getFloat(context,"key");
P.getBoolean(context,"key");
- and more
Authors
- Yogesh Sundaresan - GitHub
License
Copyright 2016 Yogesh Sundaresan
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.
*Note that all licence references and agreements mentioned in the MukkiaSevaigal README section above
are relevant to that project's source code only.