0

我是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 项目。帮我。

4

1 回答 1

0

确保您拥有以下权限:

<uses-permission android:name="android.permission.CALL_PHONE"></uses-permission>

然后像这样启动呼叫意图:

Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:123456789"));
startActivity(callIntent);

http://www.helloandroid.com/tutorials/how-make-phone-call-your-application

还可能需要仔细检查您的playerChanged值以确保它实际上是一个电话号码,看起来您是从名为“电子邮件”的字段中获取该值。

于 2013-06-14T15:04:47.753 回答