package com.example.listview;

import android.app.Activity;
import android.os.Bundle;

public class reception extends Activity
{
	@Override
	protected void onCreate(Bundle savedInstanceState) 
	{
		super.onCreate(savedInstanceState);
		setContentView(R.layout.reception);

		Bundle extras= getIntent().getExtras();

		if(extras != null)
		{
			String newString=extras.getString("send");
			Toast.makeText(Second.this,newString, Toast.LENGTH_LONG).show();
		}
	}
}
