Yorumlar
[code]
TextView text = (TextView) findViewById(R.id.textView1);
ArrayList<String> array = new ArrayList<String>();
int t = array.indexOf(array.get(2));
text.setText("" + t);
//Text değeri ekrana 2 olarak gelir…
Buse Dedeoğlu