getintent()。getStringExtra()在传递数据时显示为null

时间:2015-04-20 20:13:43

标签: android-intent android-activity

第一项活动代码如下:

 String col1 = c.getString(c.getColumnIndex("name"));
 Intent i = new Intent(Login.this, chat.class); 
 i.putExtra("nam",col1.toString());
 startActivity(i);

第二项活动代码如下:

 String fName = getIntent().getStringExtra("nam");
 Toast.makeText(this, fName+" Yes", Toast.LENGTH_LONG).show();

它显示null..why?

0 个答案:

没有答案