第一项活动代码如下:
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?