I am trying a badge View as suggested in this link. I am trying with this code .
String count_str = Integer.toString(count);
TextView text_view = (TextView) findViewById(R.id.textView);
badge1 = new BadgeView(this, text_view);
badge1.setText(count_str);
badge1.show();
But the badge is appearing in the middle of the TextView. How can I put this badge in the right corner of the TextView?