使用AIDL挂断电话

AIDL是Android接口描述语言。

最早的Android中提供了自动挂断电话的功能,但是随着版本的升高这些功能已经被

隐藏起来了,所以要想完成挂断电话的功能,则要依靠AIDL技术完成。



 

在main.xml中:

 

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout

  xmlns:android="http://schemas.android.com/apk/res/android"

  android:orientation="vertical"

  android:layout_width="fill_parent"

  android:layout_height="fill_parent"

  android:gravity="center_horizontal"

  android:background="#00ff33">

  <EditText

     android:id="@+id/phonenumber"

     android:layout_margin="8dp"

     android:layout_width="fill_parent"

     android:layout_height="wrap_content"/>

  <LinearLayout

      android:layout_width="wrap_content"

      android:layout_height="wrap_content"

      android:orientation="horizontal">

     <Button

       android:id="@+id/setnumber"

       android:layout_width="100dp"

       android:layout_height="40dp"

       android:textColor="#ffffff"

       android:background="#3399ff"

       android:text="设置黑名单"/>

     <Button

       android:id="@+id/cancelnumber"

       android:layout_marginLeft="20dp"

       android:layout_width="100dp"

       android:layout_height="40dp"

       android:textColor="#ffffff"

       android:background="#3399ff"

       android:text="取消黑名单"/>

  </LinearLayout>

</LinearLayout>

 

 

 

在src下新建包:com.android.internal.telephony,(包名不能改)

并新建文件ITelephony.aidl

 

在ITelephony.aidl中:

 

package com.android.internal.telephony ;

interface ITelephony {

  boolean endCall() ;  // 挂断电话

  void answerRingingCall() ;  // 拨打电话

}

 

 

 

 

 

在IService.java中:

 

package com.li.phone;

 

public interface IService {

 

}

 

 

 

 

 

在PhoneBroadcastReceiver.java中:

 

package com.li.phone;

 

import android.content.BroadcastReceiver;

import android.content.Context;

import android.content.Intent;

 

public class PhoneBroadcastReceiver extends BroadcastReceiver {

 

  @Override

  public void onReceive(Context context, Intent intent) {

     if (Intent.ACTION_NEW_OUTGOING_CALL.equals(intent.getAction())) { // 去电

       String outgoingNumber = intent

            .getStringExtra(Intent.EXTRA_PHONE_NUMBER); // 去电号码

       Intent pit = new Intent(context, PhoneService.class);

       pit.putExtra("outgoingNumber", outgoingNumber);

       context.startService(pit);

     } else { // 来电

       context.startService(new Intent(context, PhoneService.class));

     }

  }

 

}

 

 

 

 

在PhoneService.java中:

 

package com.li.phone;

 

import java.lang.reflect.Method;

 

import android.app.Service;

import android.content.Context;

import android.content.Intent;

import android.media.AudioManager;

import android.os.Binder;

import android.os.IBinder;

import android.os.RemoteException;

import android.telephony.PhoneStateListener;

import android.telephony.TelephonyManager;

 

import com.android.internal.telephony.ITelephony;

 

public class PhoneService extends Service {

  private TelephonyManager telephony = null;

  private AudioManager audio = null; // 声音服务

  private String phoneNumber = null; // 要过滤的电话

  private IBinder myBinder = new BinderImpl();

 

  class BinderImpl extends Binder implements IService {

 

     @Override

     public String getInterfaceDescriptor() {

       return "黑名单号码" + PhoneService.this.phoneNumber + "设置成功!";

     }

 

  }

 

  @Override

  public IBinder onBind(Intent intent) {

     this.phoneNumber = intent.getStringExtra("phonenumber"); // 取得电话号码

     this.audio = (AudioManager) super

         .getSystemService(Context.AUDIO_SERVICE); // 声音服务

     this.telephony = (TelephonyManager) super

         .getSystemService(Context.TELEPHONY_SERVICE);

     this.telephony.listen(new PhoneStateListenerImpl(),

         PhoneStateListener.LISTEN_CALL_STATE); // 设置监听操作

     return this.myBinder;

  }

 

  private class PhoneStateListenerImpl extends PhoneStateListener {

 

     @Override

     public void onCallStateChanged(int state, String incomingNumber) {

       switch (state) {

       case TelephonyManager.CALL_STATE_IDLE: // 挂断电话

         PhoneService.this.audio

              .setRingerMode(AudioManager.RINGER_MODE_NORMAL); // 正常音

         break;

       case TelephonyManager.CALL_STATE_RINGING: // 领音响起

         if (incomingNumber.equals(PhoneService.this.phoneNumber)) { // 电话号码匹配

            ITelephony iTelephony = getITelephony() ;

            if (iTelephony != null) {

              try {

                iTelephony.endCall() ; // 挂断电话

              } catch (RemoteException e) {

                e.printStackTrace();

              }

            }

         }

         break;

       case TelephonyManager.CALL_STATE_OFFHOOK: // 接听电话

         break;

       }

     }

  }

 

  private ITelephony getITelephony() {

     ITelephony iTelephony = null ;

     Class<TelephonyManager> cls = TelephonyManager.class ;

     Method getITelephonyMethod = null ;

     try {

       getITelephonyMethod = cls.getDeclaredMethod("getITelephony") ;

       getITelephonyMethod.setAccessible(true) ; // 取消封装

     } catch (Exception e) {

     }

     try {

       iTelephony = (ITelephony) getITelephonyMethod

            .invoke(this.telephony);

       return iTelephony ;

     } catch (Exception e) {

     }

     return iTelephony ;

  }

}

 

 

 

 

在MyPhoneDemo.java中:

 

package com.li.phone;

 

 

import com.li.phone.PhoneService.BinderImpl;

 

import android.app.Activity;

import android.content.ComponentName;

import android.content.Context;

import android.content.Intent;

import android.content.ServiceConnection;

import android.os.Bundle;

import android.os.IBinder;

import android.os.RemoteException;

import android.view.View;

import android.view.View.OnClickListener;

import android.widget.Button;

import android.widget.EditText;

import android.widget.Toast;

 

public class MyPhoneDemo extends Activity {

  private EditText phoneNumber = null ;

  private Button setNumber = null ;

  private Button cancelNumber = null ;

  private IService service = null ;

  private ServiceConnectionImpl serviceConnection = new ServiceConnectionImpl() ;

  @Override

  public void onCreate(Bundle savedInstanceState) {

     super.onCreate(savedInstanceState);

     super.setContentView(R.layout.main);

     this.phoneNumber = (EditText) super.findViewById(R.id.phonenumber) ;

     this.setNumber = (Button) super.findViewById(R.id.setnumber) ;

     this.cancelNumber = (Button) super.findViewById(R.id.cancelnumber) ;

     this.setNumber.setOnClickListener(new SetOnClickListenerImpl()) ;

     this.cancelNumber.setOnClickListener(new CancelOnClickListenerImpl()) ;

  }

 

  private class SetOnClickListenerImpl implements OnClickListener {

     public void onClick(View v) {

       Intent intent = new Intent(MyPhoneDemo.this,PhoneService.class) ;

       intent.putExtra("phonenumber", MyPhoneDemo.this.phoneNumber

            .getText().toString());

       MyPhoneDemo.this.bindService(intent,

            MyPhoneDemo.this.serviceConnection,

            Context.BIND_AUTO_CREATE);

      

     }

  }

  private class CancelOnClickListenerImpl implements OnClickListener {

     public void onClick(View v) {

       if(MyPhoneDemo.this.service != null) {

         MyPhoneDemo.this.unbindService(MyPhoneDemo.this.serviceConnection) ;

         MyPhoneDemo.this.stopService(new Intent(MyPhoneDemo.this,PhoneService.class)) ;

         Toast.makeText(MyPhoneDemo.this, "黑名单已取消", Toast.LENGTH_LONG)

              .show();

         MyPhoneDemo.this.service = null ;

       }

     }

  }

  private class ServiceConnectionImpl implements ServiceConnection {

     public void onServiceConnected(ComponentName name, IBinder service) {

       MyPhoneDemo.this.service = (BinderImpl) service ;

       try {

          Toast.makeText(MyPhoneDemo.this, service.getInterfaceDescriptor(), Toast.LENGTH_LONG).show() ;

       } catch (RemoteException e) {

       }

     }

 

     public void onServiceDisconnected(ComponentName name) {

      

     }

    

  }

}

 

 

 

 

修改AndroidManifest.xml:

 

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

    package="com.li.phone"

    android:versionCode="1"

    android:versionName="1.0" >

 

    <uses-sdk

        android:minSdkVersion="8"

        android:targetSdkVersion="15" />

         <uses-permission android:name="android.permission.READ_PHONE_STATE" />

       <uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS" />

       <uses-permission android:name="android.permission.RECORD_AUDIO" />

       <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

       <uses-permission android:name="android.permission.SEND_SMS"></uses-permission>

       <uses-permission android:name="android.permission.CALL_PHONE"></uses-permission>

    <application

        android:icon="@drawable/ic_launcher"

        android:label="@string/app_name"

        android:theme="@style/AppTheme" >

        <activity

            android:name=".MyPhoneDemo"

            android:label="@string/title_activity_my_phone_demo" >

            <intent-filter>

                <action android:name="android.intent.action.MAIN" />

 

                <category android:name="android.intent.category.LAUNCHER" />

            </intent-filter>

        </activity>

        <service android:name=".PhoneService" />

     <receiver android:name=".PhoneBroadcastReceiver">

       <intent-filter>

         <action android:name="android.intent.action.NEW_OUTGOING_CALL" />

         <action android:name="android.intent.action.BOOT_COMPLETED" />

         <action android:name="android.intent.action.PHONE_STATE" />

       </intent-filter>

     </receiver>

    </application>

 

</manifest>

 

 

标题基于Python的汽车之家网站舆情分析系统研究AI更换标题第1章引言阐述汽车之家网站舆情分析的研究背景、意义、国内外研究现状、论文方法及创新点。1.1研究背景与意义说明汽车之家网站舆情分析对汽车行业及消费者的重要性。1.2国内外研究现状概述国内外在汽车舆情分析领域的研究进展与成果。1.3论文方法及创新点介绍本文采用的研究方法及相较于前人的创新之处。第2章相关理论总结和评述舆情分析、Python编程及网络爬虫相关理论。2.1舆情分析理论阐述舆情分析的基本概念、流程及关键技术。2.2Python编程基础介绍Python语言特点及其在数据分析中的应用。2.3网络爬虫技术说明网络爬虫的原理及在舆情数据收集中的应用。第3章系统设计详细描述基于Python的汽车之家网站舆情分析系统的设计方案。3.1系统架构设计给出系统的整体架构,包括数据收集、处理、分析及展示模块。3.2数据收集模块设计介绍如何利用网络爬虫技术收集汽车之家网站的舆情数据。3.3数据处理与分析模块设计阐述数据处理流程及舆情分析算法的选择与实现。第4章系统实现与测试介绍系统的实现过程及测试方法,确保系统稳定可靠。4.1系统实现环境列出系统实现所需的软件、硬件环境及开发工具。4.2系统实现过程详细描述系统各模块的实现步骤及代码实现细节。4.3系统测试方法介绍系统测试的方法、测试用例及测试结果分析。第5章研究结果与分析呈现系统运行结果,分析舆情数据,提出见解。5.1舆情数据可视化展示通过图表等形式展示舆情数据的分布、趋势等特征。5.2舆情分析结果解读对舆情分析结果进行解读,提出对汽车行业的见解。5.3对比方法分析将本系统与其他舆情分析系统进行对比,分析优劣。第6章结论与展望总结研究成果,提出未来研究方向。6.1研究结论概括本文的主要研究成果及对汽车之家网站舆情分析的贡献。6.2展望指出系统存在的不足及未来改进方向,展望舆情
【磁场】扩展卡尔曼滤波器用于利用高斯过程回归进行磁场SLAM研究(Matlab代码实现)内容概要:本文介绍了利用扩展卡尔曼滤波器(EKF)结合高斯过程回归(GPR)进行磁场辅助的SLAM(同步定位与地图构建)研究,并提供了完整的Matlab代码实现。该方法通过高斯过程回归对磁场空间进行建模,有效捕捉磁场分布的非线性特征,同时利用扩展卡尔曼滤波器融合传感器数据,实现移动机器人在复杂环境中的精确定位与地图构建。研究重点在于提升室内等无GPS环境下定位系统的精度与鲁棒性,尤其适用于磁场特征明显的场景。文中详细阐述了算法原理、数学模型构建、状态估计流程及仿真实验设计。; 适合人群:具备一定Matlab编程基础,熟悉机器人感知、导航或状态估计相关理论的研究生、科研人员及从事SLAM算法开发的工程师。; 使用场景及目标:①应用于室内机器人、AGV等在缺乏GPS信号环境下的高精度定位与地图构建;②为磁场SLAM系统的设计与优化提供算法参考和技术验证平台;③帮助研究人员深入理解EKF与GPR在非线性系统中的融合机制及实际应用方法。; 阅读建议:建议读者结合Matlab代码逐模块分析算法实现细节,重点关注高斯过程回归的训练与预测过程以及EKF的状态更新逻辑,可通过替换实际磁场数据进行实验验证,进一步拓展至多源传感器融合场景。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值