不要在if-case中启动活动

时间:2012-04-26 17:59:01

标签: android broadcastreceiver

我对这部分代码有疑问

Intent myactivity = new Intent(context, MyKeyboard.class);
myactivity.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);                 
context.startActivity(myactivity);

如果我把它放在“如果”中没有任何反应,但是如果我把它放在外面就行了

public class OutgoingCallReceiver extends BroadcastReceiver  {



        public void onReceive(Context context, Intent intent) {
                Bundle bundle = intent.getExtras();

                if(null == bundle) return;

                String phonenumber = intent.getStringExtra(Intent.EXTRA_PHONE_NUMBER);


                if( phonenumber=="11111111111" ) {

                    Intent myactivity = new Intent(context, MyKeyboard.class);
                    myactivity.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                    context.startActivity(myactivity);


                }      

        }

}

1 个答案:

答案 0 :(得分:6)

phonenumber=="11111111111"

用以下代替上面的行并尝试

phonenumber.equals("11111111111")