스트링을 클래스로만들어주는코드인데

 String str = (String)cSpinnerType.getSelectedItem();
   Class c=Class.forName(str); 

 View v = (View) c.newInstance();

클래스생성하면서 인자를 넘겨주는방법은 없을까요?