Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我已经使用 google places api 开发了一个应用程序。它显示附近的百货公司。
现在,当我单击它时,我需要将商店的名称传递给另一个活动。
谁能告诉我怎么做我搜索了网络并没有找到很多解决方案。
尝试这个,
Intent i = new Intent(FirstActivity.class,Second.class); i.putExtra("name",selected_store_name); startActivity(i);
您的意图值没有传递给其他活动,即空指针异常,或者您没有在活动中获取值