Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.Intent;

import android.os.Bundle;

public class Main {

    public static void putDataIntoIntent(Intent intent, String str) {
        Bundle bundle = new Bundle();
        bundle.putString("data", str);
        intent.putExtra("data", bundle);
    }
}