xml 파일에는  LinearLayout만 정의해 놓고 안에 들어가는 뷰는 코드에서 생성하여

Image Text등을 띄우고 있습니다.

코드상에서 TextView를 생성하여 출력을 하였는데.. 스크롤바를 못 입히겠네요 ㅜㅜ

ScrollView Class에 addView(View v) 메서드가 있던데   이미 TextView (LinearLayout.addView(tv);)는 parent가 있다는 에러 메시지만
 나옵니다.

ScrollView Reference에 보니까.

The TextView class also takes care of its own scrolling, so does not require a ScrollView, but using the two together is possible to achieve the effect of a text view within a larger container.

이말이 있던데, TextView는 스크롤을 가지고 있고,  두가지 다 사용하는 것도 가능하다.  <-- 이말이 맞지요? ^^; 영어가 딸려서

코드상에서 TextView를 어떻게 입히는지 방법 좀 알려주십시오 ~

tv.setVerticalScrollBarEnabled(true);  이렇게 해봤는데 안되더라구요 ;; 

즐공하십시오~