Intent intent = new Intent();
 	    intent.setClass(exchangeRate.this,newpage.class);
 	    Bundle bundle = new Bundle();
 	    bundle.putString("title","xxx");
 	    intent.putExtras(bundle);
 	    startActivity(intent);

newpage.class

     Intent intent=this.getIntent();
        Bundle bunde = intent.getExtras();
        String t_appslink_url=bunde.getString("title");

By admin-powenko

Dr. Powen Ko is a teacher and CEO on LoopTek LLC, and like to teaching. if you need to class, please let PowenKo know, he will love to service and sharing. LoopTek web site is www.looptek.com

Leave a Reply