Use this from class send value
String value="Hellow ";
String value="Hellow ";
Intent ii = new Intent(this, SplashScreen.class); //SplashScreen is receive class
ii.putExtra("pkgName", value);
ii.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);startActivity(ii);
Use this to receive value class
String getvalue;
try { getvalue= getIntent().getExtras().getString("pkgName"); } catch (Exception e) { System.out.println("Our Exception : " + e.getMessage());}
No comments:
Post a Comment