码迷,mamicode.com
首页 > 其他好文 > 详细

挂断电话demo

时间:2018-07-23 23:43:48      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:ted   schema   undle   tool   nbsp   oncreate   方法   sch   xmlns   

技术分享图片

 

  

<!-- 结束通话和打电话的权限 --> <uses-permission android:name="android.permission.CALL_PHONE"/>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="${relativePackage}.${activityClass}" >

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="挂断电话" 
        android:onClick="endCall"/>

</RelativeLayout>

 
public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
    
    public void endCall(View v) throws Exception {
        //通过反射调用隐藏的API
            //得到隐藏类的Class对象
        Class c = Class.forName("android.os.ServiceManager");
            //得到方法所对应的Method对象
        Method method = c.getMethod("getService", String.class);
            //调用方法
        IBinder iBinder = (IBinder) method.invoke(null, Context.TELEPHONY_SERVICE);
        //得到接口对象
        ITelephony telephony = ITelephony.Stub.asInterface(iBinder);
        //结束通话
        telephony.endCall();
    }
}

挂断电话demo

标签:ted   schema   undle   tool   nbsp   oncreate   方法   sch   xmlns   

原文地址:https://www.cnblogs.com/znsongshu/p/9357412.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!