Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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();
    }
}