gpt4 book ai didi

java - 单击按钮打开拨号盘,该字符串例如 String str = "*#06#"应该在拨号盘中打开。

转载 作者:行者123 更新时间:2023-11-30 02:32:09 25 4
gpt4 key购买 nike

我的代码是这样的:

public void onclickdial(View v) {
String str = "*#06#";
startActivity(new Intent(Intent.ACTION_DIAL,Uri.parse("tel:"+str)));
Toast.makeText(getApplicationContext(), str, Toast.LENGTH_SHORT).show(); }

但是有一个问题,拨号屏幕上只显示*符号:

enter image description here

最佳答案

        String str = "*#06#";
Intent callIntent = new Intent(Intent.ACTION_DIAL);
callIntent.setData(Uri.fromParts("tel", str, ","));
Toast.makeText(getApplicationContext(), str, Toast.LENGTH_SHORT).show();
startActivity(callIntent);

或者:

        String str = "*#06#";
startActivity(new Intent(Intent.ACTION_DIAL,Uri.parse("tel:"+ Uri.encode(str))));
Toast.makeText(getApplicationContext(), str, Toast.LENGTH_SHORT).show();

关于java - 单击按钮打开拨号盘,该字符串例如 String str = "*#06#"应该在拨号盘中打开。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44027339/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com