I met a problem But I don't know where the problem is This is my code
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("tel:"+"phonenumber" ));
startActivity(intent);
Try this:
Intent in = new Intent(Intent.ACTION_VIEW, Uri.parse(String.format("tel:%s", phonenumber)));
startActivity(in);