Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.app.Activity;

import android.graphics.Color;

import android.widget.TextView;
import android.widget.Toast;

public class Main {
    public static void toastGreen(Activity activity, int resId) {
        Toast toast = Toast.makeText(activity, resId, Toast.LENGTH_LONG);
        TextView v = (TextView) toast.getView().findViewById(android.R.id.message);
        v.setBackgroundColor(Color.GREEN);
        toast.show();

    }
}