Hi I came across a code in documentation of android in Grid view for the following code.
gridview.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View v, int position, long id) {
Toast.makeText(HelloGridView.this, "" + position, Toast.LENGTH_SHORT).show();
}
});
In this what does the < ?> (space added as stackoverflow didn't allow without space) indicate/do?
genericstag