I have two activity, and when I press enter on first activity, it will open second activity, it contains a ListView
and when I choose an item from ListView
, it will get its value and bring back to first activity
this is what I've tried;
on second activity
listPerasat.setOnItemClickListener(new android.widget.AdapterView.OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
NamaPrst = ((TextView) view.findViewById(R.id.txtListNamaPrst)).getText().toString();
Intent i = new Intent();
i.putExtra("NAMA_PERASAT", NamaPrst);
finish();
}
});
}
on first activity
edtText.setText(getIntent().getStringExtra("NAMA_PERASAT")); // inside onCreate
or
public void onActivityResult(int requestCode,int resultCode, Intent data)
{
edtText.setText(getIntent().getStringExtra("NAMA_PERASAT"));
}
but nothing happen. how can I get intent and back to previous activity?