package com.sogou.sogouchat.os; import com.sogou.sogouchat.SogouChatApp; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.os.Bundle; public class MsgSrvReceiver extends BroadcastReceiver { // SogouChatApp mApp; // public MsgSrvReceiver(SogouChatApp app){ // mApp = app; // } @Override public void onReceive(Context context, Intent intent) { Bundle bundle = intent.getExtras(); int castType = bundle.getInt("CastType"); // mApp.handleSrvMsg(castType); } }