Tengo que cambiar entre dos diseños con frecuencia. El error está ocurriendo en el diseño publicado a continuación.
Cuando se llama mi diseño por primera vez, no se produce ningún error y todo está bien. Cuando llamo a un diseño diferente (uno en blanco) y luego llamo a mi diseño por segunda vez, arroja el siguiente error:
> FATAL EXCEPTION: main
> java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
Mi código de diseño se ve así:
tv = new TextView(getApplicationContext()); // are initialized somewhere else
et = new EditText(getApplicationContext()); // in the code
private void ConsoleWindow(){
runOnUiThread(new Runnable(){
@Override
public void run(){
// MY LAYOUT:
setContentView(R.layout.activity_console);
// LINEAR LAYOUT
LinearLayout layout=new LinearLayout(getApplicationContext());
layout.setOrientation(LinearLayout.VERTICAL);
setContentView(layout);
// TEXTVIEW
layout.addView(tv); // <========== ERROR IN THIS LINE DURING 2ND RUN
// EDITTEXT
et.setHint("Enter Command");
layout.addView(et);
}
}
}
Sé que esta pregunta se ha hecho antes, pero no ayudó en mi caso.
TranstitionManager.beginDelayedTransition
, compruebe mi respuesta aquí
LinearLayout
pero tú agregasTextView
. Así que arréglalo.