首页 > 代码库 > Android使用Intent实现拨打电话的动作
Android使用Intent实现拨打电话的动作
使用Intent实现打电话的动作,我们须要在 AnroidMainfest.xml中增加通话权限,打开这个文件,在application节点的前面增加以下内容
<script type="text/javascript"> $(function () { $(‘pre.prettyprint code‘).each(function () { var lines = $(this).text().split(‘\n‘).length; var $numbering = $(‘<uses-permission android:name="android.permission.CALL_PHONE" />以下,使用Intent实现打电话的这个动作,看代码
Intent intent = new Intent(); intent.setAction(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:15100000000")); startActivity(intent);我们能够将这段代码放在随意事件中,如button事件。这里举一个实例来实现。
Button btn = (Button)findViewById(R.id.button1); btn.setOnClickListener(new OnClickListener(){ @Override public void onClick(View arg0) { // TODO Auto-generated method stub //TextView tv = (TextView)findViewById(R.id.textView1); //tv.setText("very good"); Intent intent = new Intent(); intent.setAction(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:15100000000")); startActivity(intent); } });上例实现的是。点击buttonbtn以后触发打电话的动作,同一时候拨出电话 关于用户权限问题,请移步 Android 中关于权限问题的介绍 Android permission 訪问权限一览 一文
Android使用Intent实现拨打电话的动作
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。