Java tutorial
//package com.java2s; import android.content.Context; import android.widget.TextView; import android.widget.Toast; public class Main { public static void setToastView(Context context, String str) { Toast makeText = Toast.makeText(context, " " + str + " ", 0); TextView textView = (TextView) makeText.getView().findViewById(16908299); if (textView != null) { textView.setGravity(17); } makeText.show(); } }