Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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

public class Main {
    public static final String SMART_PHONE_PLUGIN_INFO = "at.bartinger.smartphone.PLUGIN_INFO";

    public static String getInfo(Activity activity) {
        String data = "";

        if (activity.getIntent().hasExtra(SMART_PHONE_PLUGIN_INFO))
            data = activity.getIntent().getStringExtra(SMART_PHONE_PLUGIN_INFO);

        return data;
    }
}