Can I create a strikethrough text in Android, I mean adding a special value in the TextView tag that can make this possible?
TextView
Just use this and you are done . For Activity :
TextView t= (TextView).findViewById(R.id.thousand)); t.setPaintFlags(t.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);
For Xml :