拨打密码时启动隐藏的应用程序

时间:2015-01-28 09:05:57

标签: android service broadcast receiver

我的要求是在窃取密码时启动隐藏的应用程序。

MainActivity.java

public class MainActivity extends
        BroadcastReceiver {

    String dialed_number;

    @Override
    public void onReceive(Context context, Intent intent)
    {
        dialed_number = intent.getStringExtra(Intent.EXTRA_PHONE_NUMBER);

        if(dialed_number.equals("*0*1235#"))
        {
            Intent appIntent = new Intent(context, MainActivity.class);
            appIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            context.startActivity(appIntent);
            setResultData(null);
        }
    }

}

的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.tuto.bala.helloworld" >
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

        <receiver
            android:name=".MainActivity">
        </receiver>
    </application>

</manifest>

当我运行项目时,我得到以下异常: 连接问题无效mmi代码android

任何人都可以请帮助

此致 巴拉

2 个答案:

答案 0 :(得分:0)

  

异常:连接问题无效mmi代码android

要检测外拨电话事件,您应在NEW_OUTGOING_CALL中使用AndroidManifest.xml操作注册广播:

<receiver android:name=".MainActivity">
   <intent-filter>
     <action android:name="android.intent.action.NEW_OUTGOING_CALL" />
    </intent-filter>
</receiver>

并添加PROCESS_OUTGOING_CALLS权限:

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

答案 1 :(得分:0)

我使用了相同的代码,当我们获得拨号时,它的工作是一个不包含*,#的数字。在Manifest文件中,我们必须像这样声明接收器

<receiver android:name=".MainActivity" >
            <intent-filter>
                <action android:name="android.intent.action.NEW_OUTGOING_CALL" />
            </intent-filter>
        </receiver>

并将权限写为<uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS" />

只需看下面编辑过的代码:

使用BroadcastReceiver,如下所示:

public class MyOutgoingCallHandler extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        // Extract phone number reformatted by previous receivers
        String phoneNumber = getResultData();
        if (phoneNumber == null) {
            // No reformatted number, use the original
            phoneNumber = intent.getStringExtra(Intent.EXTRA_PHONE_NUMBER);
        }

        if(phoneNumber.equals("1234")){ // DialedNumber checking.
            // My app will bring up, so cancel the broadcast
            setResultData(null);

            // Start my app
            Intent i=new Intent(context,MainActivity.class);
            i.putExtra("extra_phone", phoneNumber);
            i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            context.startActivity(i);
        }    
    }
}

别忘了在你的清单中注册这个接收器

<receiver android:name="MyOutgoingCallHandler">
    <intent-filter >
        <action android:name="android.intent.action.NEW_OUTGOING_CALL"/>
    </intent-filter>
</receiver>

另外,请包含权限:

现在,如果您忽略接收方中的号码检查,您将在MainActivity中获得拨打的号码,

String phone=getIntent().getStringExtra("extra_phone");
    if(!phone.equals(null)){
        Toast.makeText(getBaseContext(), phone, Toast.LENGTH_LONG).show();
    }

如果你想将app作为魔术号码的召唤启动,使用BroadcastReceivers进行拨出呼叫非常简单,你可以从Right Number app获得解决方案