-
-
class SendMsgClickListener implements OnClickListener {
-
public void onClick(View v) {
-
-
Uri uri = Uri.parse("smsto:10086");
-
Intent intent = new Intent(Intent.ACTION_SENDTO, uri);
-
intent.putExtra("sms_body", "android...");
- startActivity(intent);
- }
- }
-
-
-
class SendCallClickListener implements OnClickListener {iphone5
-
public void onClick(View v) {
-
-
Uri uri = Uri.parse("tel:10086");
-
Intent intent = new Intent(Intent.ACTION_CALL, uri);
- startActivity(intent);
- }
- }
授权:需要在AndroidManifest.xml中加入两行配置
- <uses-permission android:name="android.permission.CALL_PHONE" />
-
-
<uses-permission android:name="android.permission.SEND_SMS"/>
相关文章:
-
2022-12-23
-
2022-01-26
-
2021-12-23
-
2021-12-31
-
2022-12-23
-
2021-04-29
猜你喜欢
-
2022-12-23
-
2021-09-26
-
2022-12-23
-
2021-07-17
-
2021-10-19
-
2021-12-16
-
2022-01-16
相关资源
-
下载
2023-02-08
-
下载
2021-06-22
-
下载
2023-01-24
-
下载
2023-03-31