请教一下大家 我在一个activity中用了AsyncTask在onPostExecute中调用其他的activity并传值代码如下:
Intent intent = new Intent();
Bundle bundle = new Bundle(); 
bundle.putString("op_flag", "P");
bundle.putString("cate_id", cate_id);
intent.setClass(Product.this, ProductList.class);
Product.this.startActivity(intent);
然后在
ProductList中用
Bundle bundle = this.getIntent().getExtras();
发现bundle是空的
请问这个是啥问题?是不是在线程中不能这么写?