我有一个活动 A 来启动另一个活动 B。在活动 B 中,有一些功能可以从互联网下载资源。当A跳转到B时,我想立即显示B'view。实际上,B'view会隐藏,直到所有功能准备好。我想 B 在处理数据时显示“正在搜索....”。
A:
Intent intent = new Intent(A.this, B.class);
intent.putExtra("result",obj.getText());
A.this.startActivity(intent);
B:
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.success);
TextView text = (TextView)this.findViewById(R.id.textview);
text.setText("searching....");
Bundle bun= getIntent().getExtras();
String tempIsbn=bun.getString("result");
//some functions
bookinfo=getResultByIsbn(tempIsbn);
.....
}