我试图在我的活动中祝酒。我的活动首先使用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;
但是应该烤面包的时间,我不会看到吐司。 可能有什么不对? 感谢
答案 0 :(得分:0)
不要使用getApplicationContext:尝试
Toast.makeText(youractivity.this,"SMS Sent",Toast.LENGTH_SHORT).show();
也可以尝试
Toast.makeText(context,"SMS Sent",Toast.LENGTH_SHORT).show();