To punch, you can use a background image to create a scroll effect:
android:background="@drawable/strike_through"
In cases where draw_through drawable is a 9-patch image that holds the line through the middle. This is the easiest way to implement it.
or you can do it programmatically like this.
TextView t = (TextView) findViewById(R.id.text); t.setText("Text here"); t.setPaintFlags(t.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);
Anurag ramdasan
source share