を表示したいと思いますが、「activity1」はコードを実行しています(作業中)。その後再びactivity1を表示します。しかし、私が再びアクティビティ1を開始したくない場合は、doSomeStuff
が終了したときにレイアウトを切り替えるだけです。ありがとうございました。アンドロイドでアクティビティ/レイアウトが切り替わります
このおProgressDialog
を使用する必要がありますについてはactivity1
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Intent myIntent = new Intent(getApplicationContext(), loadingActivity.class);
startActivityForResult(myIntent, 0);
//Do some stuff while loadingActivity is showed
doSomeStuff()
//here I want to show again this activity and hide loading one
loadingActivity
public class loadingActivity extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//setContentView(R.layout.main);
setContentView(R.layout.loading);
}