IP拨号器

Posted 码上加油站

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IP拨号器相关的知识,希望对你有一定的参考价值。

是一个最终的接收者
package com.example.ip;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
public class IPReceiver extends BroadcastReceiver {
   @Override
   public void onReceive(Context context, Intent intent) {
      if ("android.intent.action.NEW_OUTGOING_CALL".equals(intent.getAction())) {
         String num = getResultData();
         String newNum = num;
         if (!num.startsWith("17951")) {
            newNum = "17591" + num;
         }
         setResultData(newNum);
      }
   }
}

清单文件:

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

  <receiver android:name="com.example.ip.IPReceiver" >

      <intent-filter>

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

      </intent-filter>

  </receiver>

 

以上是关于IP拨号器的主要内容,如果未能解决你的问题,请参考以下文章

ip拨号器

完成IP拨号器

广播接收者案例_ip拨号器

请问ROS只允许PPPOE拨号上网,不能填IP上网,怎么设置?

Android TalkBack 和片段堆栈

路由器宽带连接方式怎么设置 例如拨号上网能不能设置成自动获取ip?