即时通讯新手到android开发。 我在ListView控件中有3个TextView和一个按钮。我的疑问是点击这个按钮 我想获取选定的列表项TextView文本,我可能知道如何获得它吗?
答案 0 :(得分:0)
首先你在一个字符串中获取textView的文本,然后(我猜你必须将它发送到其他活动,如果im r8那么就像我在下面的代码中那样做)
String xyz = textView.getText().toString();
button = (Button) findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Intent intent = new Intent(YOUR_PRESENT_ACTIVITY.this, YOUR_NEXT_ACTIVITY.class);
intent.putExtra("key", xyz);
startActivity(intent);
}
});
然后在你的YOUR_NEXT_ACTIVITY
中Intent in = getIntent();
String str = in.getStringExtra(("key"));