Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.view.View;

import android.widget.TextView;

public class Main {

    public static void setText(View view, int id, String text) {
        TextView textView = findViewById(view, id);
        textView.setText(text);
    }

    public static <T> T findViewById(View view, int id) {
        return (T) view.findViewById(id);
    }
}