家庭按钮听众在背景中

时间:2012-06-25 10:11:59

标签: java android service android-activity clicklistener

我想创建服务(?),它将一直在后台运行,并在系统启动时启动。此外,我希望它检测双按钮按下,然后启动指定的活动。有可能吗?

1 个答案:

答案 0 :(得分:2)

1。系统启动时,您可以这样做:

public class PhoneStateReceiver extends BroadcastReceiver{

    @Override
    public void onReceive(final Context context, Intent intent) {

        if(intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED)){
            Intent launch = new Intent(context, ServiceToLaunch.class);
            launch.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            context.startService(launch);
        }
    }
}

在你的清单中添加:

<receiver android:name=".receiver.PhoneStateReceiver">
    <intent-filter>
        <action android:name="android.intent.action.BOOT_COMPLETED" />
    </intent-filter>
</receiver>   

添加权限:

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

2。没有可用的Home键事件。