This can be achieved using this library. https://github.com/jgilfelt/android-viewbadger
Include the library in your project and add the code below to view it.
View target = findViewById(R.id.target_view);
BadgeView badge = new BadgeView(this, target);
badge.setText("1");
badge.show();
source
share