拨打密码时启动隐藏的应用程序
launch hidden app when secret code is dialed
我的要求是在输入密码时启动隐藏的应用程序。
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
谁能帮忙
此致,
巴拉
exception: connection problem invalid mmi code android
要检测传出 phone 呼叫事件,您应该在 AndroidManifest.xml
中使用 NEW_OUTGOING_CALL
操作注册广播:
<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"/>
我使用了相同的代码,当我们得到的拨号号码是一个不包括 *、# 的号码时,它可以正常工作。在清单文件中,我们必须像这样声明接收者
<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();
}
如果你想启动应用程序作为对幻数的调用,使用 BroadcastReceivers 进行呼出非常简单,你可以从 Right Number 应用程序中获得解决方案
我的要求是在输入密码时启动隐藏的应用程序。
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
谁能帮忙
此致, 巴拉
exception: connection problem invalid mmi code android
要检测传出 phone 呼叫事件,您应该在 AndroidManifest.xml
中使用 NEW_OUTGOING_CALL
操作注册广播:
<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"/>
我使用了相同的代码,当我们得到的拨号号码是一个不包括 *、# 的号码时,它可以正常工作。在清单文件中,我们必须像这样声明接收者
<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();
}
如果你想启动应用程序作为对幻数的调用,使用 BroadcastReceivers 进行呼出非常简单,你可以从 Right Number 应用程序中获得解决方案