안녕하세요

ApiDemo 의 TextSwitcher 소스를 보면 아래와 같이 생성하는데..
implements ViewSwitcher.ViewFactory 선언 후에 아래와 같이 TextView를 생성하는데..
    public View makeView() {
        TextView t = new TextView(this);
        t.setGravity(Gravity.TOP | Gravity.CENTER_HORIZONTAL);
        t.setTextSize(30);
       return t;
    }

이 경우는 TextSwitcher 가 한개인 경우고..  View가 여러개인 경우는 어떻게 생성하나요?