錯誤:指定的子層級已經有父級(Android)
問題:
問題:FATAL EXCEPTION: main java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.
問題:
<code class="java">tv = new TextView(getApplicationContext()); // initialized elsewhere et = new EditText(getApplicationContext()); // initialized elsewhere 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); } }); }</code>
問題:
經常切換兩種佈局會導致下列錯誤:<code class="java">if (tv.getParent() != null) { ((ViewGroup) tv.getParent()).removeView(tv); // Fix }</code>
程式碼片段:
解決方案:解決方案:解決方案:解決方案:解決方案:解決方案:解決方案:解決方案:解決方案錯誤訊息建議在將子層級(TextView)新增至新佈局之前將其從目前父級中刪除。 在layout.addView(tv);之前添加以下程式碼;:這可以確保TextView 在添加到新佈局之前從任何現有父級中正確刪除,從而防止指定的父級衝突。以上是為什麼我在 Android 中收到「指定的子項已經有父項」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!