동적으로 생성한 EditText의 스크롤바를 생성시키려면 어떻게 해야 할까요 ?

   et = new EditText(this);
   
   et.setScrollBarStyle(EditText.SCROLLBARS_INSIDE_OVERLAY);
  
   et.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
   et.setLines(1);
   et.setMaxLines(2); 
   et.setVerticalScrollBarEnabled(true);

이렇게 해도 안되네요.

어떤 방법이돈 조언주시면 감사하겠습니다.