Well, create it that way
TextView textView = new TextView(this);
textView.setText("Alguma coisa");
LinearLayout linear = (LinearLayout)findViewById(R.id.layoutVertical);
linear.addView(textView);
and to remove I did so
linear.removeView(textView);
But did not remove it, what other way to remove it?