Comment faire un défilement fragment base sur la valeur par défaut d'android page Vue

Je suis en utilisant la configuration par défaut à partir de la consultation de la page de configuration dans Android. Je veux rester très simple. La configuration par défaut fournit un TextView pour mettre du texte, et mon texte sort de l'écran. Est-il possible de faire cette défiler verticalement?

//edited to make the code appear in the code block
public class DayFragment extends Fragment {
    /**
     * The fragment argument representing the section number for this
     * fragment.
     */
    public static final String ARG_SECTION_NUMBER = "section_number";

    public DayFragment() {

    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        //Create a new TextView and set its text to the fragment's section
        //number argument value.
        TextView tView = new TextView(getActivity());
        if(getArguments().getInt(ARG_SECTION_NUMBER) > 1){
            tView.setText(getAllMeals(getArguments().getInt(
                    ARG_SECTION_NUMBER)-1));}
        else {
            getMeal();
            tView.setText(message);
        }
        return tView;
    }
}

OriginalL'auteur sjoshua270 | 2013-02-21