In case someone wants to do this in the programming way! Do the following: Update the color file in your values folder with this.
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="transparent">#00ffffff</color> <!--This is the transparency line-->
</resources>
then call the transparency programitically
your_textview.setBackgroundResource(R.color.transparent);