首先定義一個(gè)Broadcast類——HandleBootComplete,代碼如下:
[java] view plaincopyPRint?public class HandleBootCompleteextends BroadcastReceiver { public void onReceive(Context context, Intent intent) { Intent startActivityIntent = new Intent(context, DrawText.class); startActivityIntent.setAction(Intent.ACTION_MAIN); startActivityIntent.addCategory(Intent.CATEGORY_LAUNCHER); startActivityIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(startActivityIntent); } }新聞熱點(diǎn)
疑難解答