Show message(Snackbar, Toast) in your application. Customization warning, information and success messages.
- Preview
Usage Toast
SnackToa.toastInfo(MainActivity.this, "Info Toast");
Usage Snackbar
SnackToa.snackBarInfo(MainActivity.this, "Info Snackbar");
Usage SnackbarFloating in Activity
SnackToa.snackBarFloating(findViewById(android.R.id.content), MainActivity.this, "Error Snackbar", new SnackToa.snackbarUndoClick() {
@Override
public void onClick(View v) {
SnackToa.toastInfo(MainActivity.this, "Undo Clicked");
}
});
Usage SnackbarFloating in Fragment
...
private View view;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
view = inflater.inflate(R.layout.your_layout, container, false);
...
SnackToa.snackBarFloating(view, getActivity(), "Error Snackbar", new SnackToa.snackbarUndoClick() {
@Override
public void onClick(View v) {
SnackToa.toastInfo(MainActivity.this, "Undo Clicked");
}
});
...
return view;
}
Download the latest JAR or grab via Maven:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.mustafaynk</groupId>
<artifactId>SnackToa</artifactId>
<version>1.0</version>
</dependency>
or Gradle:
- Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
- Add the dependency
dependencies {
implementation 'com.github.mustafaynk:SnackToa:v1.1'
}
Copyright SnackToa
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.