На самом деле, вы делаете это так:
TextView tv=new TextView(this);
//either:
tv.setTextAppearance(this, R.style.textStyle1); //some style you have set up
///or:
tv.setTextSize(16);
tv.setTextColor(R.color.myred); //some color you set up
, поэтому не для статического вызова TextView вам нужен isntance textview.