这应该做。
TextView tv = (TextView)view.findViewById(R.id.txt_Genius);String genus = tv.getText().toString();
然后将其放入意图附加功能中,我想您已经知道这一点。
i.putExtra("genius", genius);编辑;
在您的新活动中,您将访问该意图并获得附加包。然后,您可以访问上一个活动中意图放置的任何内容,如下所示;
Bundle extras = getIntent().getExtras();String genius = extras.getString("genius");// pop some toast to show the value of genius - not required but shows it works :) Toast.makeText(this, "Genius value: " + genius, Toast.LENGTH_SHORT).show();


