我是android开发的新手。我想像这样向字符串变量添加调用函数?
TextView c = (TextView) v.findViewById(R.id.email);
String playerChanged = c.getText().toString();
Intent call = new Intent(Intent.ACTION_CALL);
call.setData(Uri.parse("tel:" + playerChanged ));
startActivity(call);
这里 c 来自 SingleList 项目。帮我。