So I searched a lot but didn't get that how to create a toast like message that options menu provide on long tap on them. I'm sure there is a official way to do that, I want to create that message box on button long tap.
button.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
Toast.makeText(ActivityMain.this, "Have a good day", Toast.LENGTH_SHORT).show();
return false;
}
});
Result I want without using a custom toast sample given below