勒索软件
Posted nangongyibin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了勒索软件相关的知识,希望对你有一定的参考价值。
勒索软件
- 定义广播接收者 接收手机重启事件
public class MyReceviver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { Intent intent1 = new Intent(context, MainActivity.class); intent1.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(intent1); } }
- 在清单文件中配置
<receiver android:name=".MyReceviver" android:enabled="true" android:exported="true"> <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED" /> </intent-filter> </receiver>
以上是关于勒索软件的主要内容,如果未能解决你的问题,请参考以下文章