I've found some problems when trying to pass some data from one activity to another.
I get data from an EditText like this:
et = (EditText)findViewById(R.id.et10);
id=et.getText().toString();
In the first activity (TakeSomeData.class):
Intent i = new Intent(TakeSomeData.this, HttpExample.class);
i.putExtra("STRING_I_NEED", id );
startActivity(i);
In the second Activity (HttpExample.class):
Bundle extras = getIntent().getExtras();
newString = extras.getString("STRING_I_NEED");
And then i pass this variable as the argument of a method which is defined like this:
public String GetInternetData(String str) throws Exception {...}
I call this method like this:
String returned = test.GetInternetData(newString);
But in the end, the string seems to be empty. What could be my fault?
Thank you a lot.