是否有办法根据添加到筛选列表中的手机号码拦截来电/短信(阻止或取消阻止)?
答案 0 :(得分:7)
---->对于您的问题,我认为以下内容会有所帮助。
package android_programmers_guide.PhoneCallReceiver;
import java.lang.reflect.Method;
import com.android.internal.telephony.ITelephony;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.telephony.TelephonyManager;
import android.util.Log;
import android.widget.Toast;
public class PhoneCallReceiver extends BroadcastReceiver
{
Context context = null;
private static final String TAG = "THIRI THE WUT YEE";
private ITelephony telephonyService;
@Override
public void onReceive(Context context, Intent intent)
{
Log.v(TAG, "Receving....");
TelephonyManager telephony = (TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE);
try
{
Class c = Class.forName(telephony.getClass().getName());
Method m = c.getDeclaredMethod("getITelephony");
m.setAccessible(true);
telephonyService = (ITelephony) m.invoke(telephony);
Toast tag = Toast.makeText(context, "Call is not allowed in the meeting!!!", Toast.LENGTH_LONG);
tag.setDuration(25);
tag.show();
telephonyService.silenceRinger();
telephonyService.endCall();
}
catch (Exception e)
{
e.printStackTrace();
}
}
}
- - - - >这是接口类
package com.android.internal.telephony;
interface ITelephony
{
boolean endCall();
void answerRingingCall();
void silenceRinger();
}
---->清单如下
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".PhoneCall2"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name=".PhoneCallReceiver">
<intent-filter android:priority="100" >
<action android:name="android.intent.action.PHONE_STATE" />
</intent-filter>
</receiver>
</application>
<uses-sdk android:minSdkVersion="3" />
<uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
</manifest>
---&GT;老实说,我在互联网上找到了这个代码 干杯!
答案 1 :(得分:5)
据我所知,接收电话的申请无法修改。 不过,请参阅How to block calls in android了解一些有创意的建议。
似乎有一个删除短信的解决方法 How to delete an SMS from the inbox in Android programmatically?
但是应用程序这样做是非常值得怀疑的,因为副作用可能很严重。确保您的用户明白这一点! 最好的解决方案恕我直言,将有一个单独的android构建,支持这些儿童安全功能(我认为这是你想要用它)。
答案 2 :(得分:0)
好吧,如果你正在寻找一个应用程序,Android市场肯定有很多呼叫拦截应用程序。我推荐以下免费应用程序,它可以执行此操作以及更多内容: https://play.google.com/store/apps/details?id=cloud4apps.cBlocker