I have two classes, a listview class with many strings and a class with a text view ..
I want when I click on a string on the listview the second class starts and the textView in it is setText to the item clicked ..
I tried:
@Override
protected void onListItemClick(android.widget.ListView l, View v, int position, long id)
{
super.onListItemClick(l, v, position, id);
String item = (String) getListAdapter().getItem(position);
Intent select = new Intent(LV.this, Main.class);
startActivity(select);
}
and on the second class its
S.setText(LV.item);
S is the textview
now it appears null ..
You dont get data in one method of an activity in another activity, unless you pass the data between activites. They are only locally available to one activities
Use
putExtrato send data from one activity to another. Now in the second activity recieve that value and set it as text to the TextViewHere for e.g
In the first Activity
In the next activity, receive this