I\'ve got some problem here. It looks simple and i keep searching for its solution. Unfortunately, i cant find anything. This is my problem.... What i\'m trying to do is to
arg0 is your AdapterView, typically a ListView. arg2 is the position in the ListView. You can get the items from your Adapter :
arg0
AdapterView
ListView
arg2
Object item = arg0.getItemAtPosition(arg2);
Depending on the type of your object in your adapter, a trivial solution is:
String value = item.toString();