Introduction
Here is the source code for Main.java
Source
//package com.java2s;
import android.content.Intent;
public class Main {
public static void putExtra(Intent intent, String key, String value) {
if (value != null && value.length() > 0) {
intent.putExtra(key, value);
}
}
}