如何从广播接收器加载活动的onReceive(How to load activity from B

2019-10-18 10:35发布

我想从加载活动BroadcastReceiver onReceive方法。 我有2个活动,一个是主要的,我创建的第二个。 我想加载从第二个活动onReceive但它加载的主要活动,我不知道为什么..

这是对意图onReceive()

Intent i = new Intent(context, BTNotifierWarning.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);   

这是BTNotifierWarning类:

package com.btnotifier;

import android.app.Activity;
import android.os.Bundle;

public class BTNotifierWarning extends Activity {

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.warning);

        // TODO Auto-generated method stub
    }
}

这是警告XML布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context=".BTNotifierWarning" >

为什么发生?

谢谢!

文章来源: How to load activity from BroadcastReceiver onReceive