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 ..
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…