Skip to content Skip to sidebar Skip to footer

Snackbar Lookalike (in App Notifications) For Activities Not Using Appcompat-v7

I want to show in app notifications (not a dialog, but a light weight in app notification), It should also have button similar to what hangouts does: I cannot use snackbar given

Solution 1:

You can use toast.

    Context context = getApplicationContext();
    CharSequence text = "Hello toast!";
    int duration = Toast.LENGTH_SHORT;

    Toast toast = Toast.makeText(context, text, duration);
    toast.show();

Post a Comment for "Snackbar Lookalike (in App Notifications) For Activities Not Using Appcompat-v7"