在searchactivity中:我声明了一个后台工作者类来连接到远程mysql数据库并获取一些数据
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_search);
BackgroundWorker worker = new BackgroundWorker(SearchActivity.this);
worker.execute("Searchfirst");
////////// My message is empty below
Toast.makeText(SearchActivity.this,getIntent().getExtras().getString("searchresult"),Toast.LENGTH_SHORT).show();
}
在backgroundworker.class中,backgroundworker类确实获取了数据但未能传递给我的活动
protected void onPostExecute(Wrapper w) {
else if(w.result.contains("Searchfirst successfully!")){
////////// My message can be showed correctly here
Toast.makeText(context,w.result.toString(),Toast.LENGTH_SHORT).show();
Intent colleges = new Intent(context,SearchActivity.class);
colleges.putExtra("searchresult", w.result);
}
}
此外,我发现如果我将数据放入intent并通过在onPostExecute()中调用startActivity(intent)立即启动该活动,则数据可以传递给该intent,但是,如果我没有启动该活动,数据丢失了吗?
答案 0 :(得分:2)
您可以添加以下行:
Intent intent = new Intent("myAction");
intent.putExtra("searchResult", w.result);
sendBroadcast(intent);
然后在您的活动中注册广播接收者:
registerReceiver(new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
Object result = intent.getExtras().get("searchResult");
}
}, new IntentFilter("myAction"));
此外,您可以定义一个侦听器接口并将其传递给异步任务,然后在onPostExecute()方法中调用侦听器的方法。没有必要以这种方式调用意图。