मुझे अक्सर दो लेआउट के बीच स्विच करना पड़ता है। नीचे पोस्ट किए गए लेआउट में त्रुटि हो रही है।
जब मेरे लेआउट को पहली बार कहा जाता है, तो कोई त्रुटि नहीं होती है और सब कुछ ठीक है। जब मैं एक अलग लेआउट (एक रिक्त एक) को कॉल करता हूं और बाद में अपने लेआउट को दूसरी बार कॉल करता हूं, तो यह निम्न त्रुटि फेंकता है:
> FATAL EXCEPTION: main
> java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
मेरा लेआउट-कोड इस तरह दिखता है:
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);
}
}
}
मुझे पता है कि यह सवाल पहले भी पूछा जा चुका है, लेकिन इसने मेरे मामले में मदद नहीं की।
TranstitionManager.beginDelayedTransition
, कृपया मेरे उत्तर को यहाँ देखें
LinearLayout
लेकिन आप जोड़ते हैंTextView
। तो इसे ठीक करें।