Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import android.widget.TextView;

public class Main {
    /*****************************************************
     * ---------------- * Textview * --------------------
     *
     *
     *
     ****************************************************/

    public static boolean setText(TextView textView, String text, boolean set) {
        if (set)
            setText(textView, text);

        return set;
    }

    public static void setText(TextView textView, String text) {
        if (textView != null)
            textView.setText(text);
    }
}