为什么吐司在谷歌地图中不起作用

时间:2013-03-30 09:44:42

标签: android

我试图在我的活动中祝酒。我的活动首先使用GoogleMap充实,如

protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);     
            setContentView(R.layout.activity_detail_map_view);
}

然后我在onResume()

中设置了吐司
public void onResume() {
    super.onResume(); 

     //---create the BroadcastReceiver when the SMS is sent---
        smsSentReceiver = new BroadcastReceiver(){
            @Override
            public void onReceive(Context arg0, Intent arg1) {

                switch (getResultCode())
                {
                    case Activity.RESULT_OK:
                        Toast.makeText(getBaseContext(), "SMS sent",
                            Toast.LENGTH_SHORT).show();
                        break;

但是应该烤面包的时间,我不会看到吐司。 可能有什么不对? 感谢

1 个答案:

答案 0 :(得分:0)

不要使用getApplicationContext:尝试

Toast.makeText(youractivity.this,"SMS Sent",Toast.LENGTH_SHORT).show();

也可以尝试

Toast.makeText(context,"SMS Sent",Toast.LENGTH_SHORT).show();