[android-developers] Re: How can i transfer username to next page by Intent:

2009-08-28 Thread Panut Sunyakorn
use startActivityForResult(intent) and implement onActivityResult(int requestCode, int resultCode, Intent data) method. startActivityForResult(new Intent(this, YouClass.class), LOGIN_REQUEST); protected void onActivityResult(int requestCode, int resultCode, Intent data) { if

[android-developers] Re: How can i transfer username to next page by Intent:

2009-08-28 Thread Amir Alagic
Hi, Try with Intent intent = new Intent(arg); ... intent.putExtra(username, userNameValue); startActivity(intent); Then on next activity use String userNameValue = getIntent().getStringExtra(username); Amir Alagic Sony Ericsson Mobile Communications The views, opinions and statements in