4

我在 AndroidManifest.xml 中定义了一个 BroadCastReceiver,如下所示

<receiver
   android:name="com.example.hello.ScreenUnlockReceiver" 
   android:enabled="true" 
   android:singleUser="true">
   <intent-filter>
      <action android:name="android.content.Intent.ACTION_USER_PRESENT" />
   </intent-filter>
</receiver>

并将接收器定义如下:

public class ScreenUnlockReceiver 
      extends BroadcastReceiver {


   @Override
   public void onReceive(Context context, Intent intent) {
       //start activity
       Intent i = new Intent();
       i.setClassName("com.example.hello", "LoginActivity");
       i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
       context.startActivity(i);
   }
}

但是当我解锁屏幕并且没有显示 LoginActivity 时,广播接收器没有被触发。LoginActivity 是 android sdk 附带的默认登录活动。

我是否遗漏了使用许可或其他内容,请告诉我。谢谢

桑托什

4

2 回答 2

4

你应该像这样解决问题
i.setClassName("com.example.hello", "com.example.hello.LoginActivity")

于 2013-05-03T10:58:44.673 回答
4

您必须拦截的操作是:

<intent-filter>
  <action android:name="android.intent.action.USER_PRESENT" />
</intent-filter>

开发者 Android ACTION_USER_PRESENT

于 2013-05-03T10:59:06.003 回答