Can't pass String via Extra on an Android grid view

188 Views Asked by At

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.

2

There are 2 best solutions below

2
On

Ok I close this one. Thanks for help. I did some mistakes with the data I wanted to send. Extras are not guilty! ^^

0
On

use following one BookletsGridActivity.class

 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);

PdfReader.class

Intent intent = getIntent();    
String value = intent.getStringExtra("pdfurl", "");