标签:call 隐私 示意图 tac star action color log blog
Android5.0之后出现了一下情况,使用隐示意图跳转,startActivity(),方法会一直报错。
Intent intent = new Intent(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:10010")); startActivity(intent);
这是Android注重用户隐私,必须使用显示意图进行跳转。
Intent intent = new Intent(); intent.setAction(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:10010")); startActivity(intent);
其实我不明白这两种的区别。但是这样就解决了startActivity()报错的情况
标签:call 隐私 示意图 tac star action color log blog
原文地址:http://www.cnblogs.com/zhoushenglei/p/7159506.html