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.text.Html;

import android.widget.TextView;

public class Main {
    public static void setText(Activity r, final TextView v, final String text) {
        r.runOnUiThread(new Runnable() {
            @Override
            public void run() {
                try {
                    v.setSingleLine(false);
                    v.setText(Html.fromHtml(text));
                } catch (Exception e) {
                }
            }
        });
    }
}