我遇到了onClick / onItemClickListener的问题。我有一个ListView,它包含字符串(保存在Parse.com上)“animal”和“area”。我还有一个字符串“约”保存在那里。我想在点击后在另一个活动中显示“关于”字符串。这是什么最好的解决方案?
提前致谢!问候和圣诞快乐
答案 0 :(得分:0)
在你的听众身上:
String about = "content";
Intent i = new Intent(this, OtherActivity.class);
i.putExtra("about", about);
startActivity(i);
关于其他活动:
Intent intent = getIntent();
String about = intent.getExtras().getString("about");