I have a gridView and I want to pass an Extra via an intent. It usually works, but not here:
gv.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View v,
int position, long id) {
String prompt = (String)parent.getItemAtPosition(position);
Intent intent = new Intent(BookletsGridActivity.this, PdfReader.class);
intent.putExtra("pdfurl", prompt);
System.out.println("prompt --->" + prompt);
overridePendingTransition(R.anim.animationin, R.anim.animationout);
startActivity(intent);
}
});
I have no idea why it is not working: I check prompt value and it's the right one.
Ok I close this one. Thanks for help. I did some mistakes with the data I wanted to send. Extras are not guilty! ^^