Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi i have developed an app using google places api. It displays the nearby department stores.

Now i need to pass the name of the store to another activity when i click on it.

Can anyone tell me how to do it i searched the net and did not find many solutions.

share|improve this question

closed as not constructive by Reno, IceMAN, shanethehat, Gajotres, Linger Jan 28 at 14:03

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

Try this,

Intent i = new Intent(FirstActivity.class,Second.class);
i.putExtra("name",selected_store_name);
startActivity(i);
share|improve this answer
didnt work it gave an error on selected_store_name telling to add it as final but i cant add it as final it gives error in other places... @Muralinganesan... – user1881440 Jan 28 at 11:41
paste your logcat error – MuraliGanesan Jan 28 at 11:43
this is my logcaterror – user1881440 Jan 28 at 11:52
how will u pass value one Activity to another Activity. – MuraliGanesan Jan 28 at 11:59
i added my code @Muraliganesan – user1881440 Jan 28 at 12:09
show 2 more comments

either your intent value is not getting passed to other activity i.e. null pointer exception or you haven't fetched the value in activity

share|improve this answer
i added my code @maddy – user1881440 Jan 28 at 12:10
wherez your code....? – maddy Jan 29 at 4:52