私はこのコードを使用しています(テキストエリアといくつかのボタンを持つクラスから、非常に簡単です):
final Intent i1=new Intent(getBaseContext(),Domanda9.class);
replaceContentView("Calledw", i1);
この:
public void replaceContentView(String id, Intent newIntent){
getLocalActivityManager().destroyActivity("Called", true);
View view = getLocalActivityManager().startActivity(id,newIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)) .getDecorView();
this.setContentView(view);
}
「調査アプリ」 のビューを変更するには どうすればこれを解決できますか? 何かを空にする方法はありますか?