我必须经常在两种布局之间切换。错误发生在下面发布的布局中。

当我的布局第一次被调用时,没有发生任何错误,一切都很好。当我然后调用一个不同的布局(一个空白的),然后调用我的布局第二次,它抛出以下错误:

> 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);
        }
    }
}

我知道以前有人问过这个问题,但它对我的情况没有帮助。


当前回答

在我的情况下,我不小心从Layout.onCreateView()中返回一个子视图,如下所示:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View v= inflater.inflate(R.layout.activity_deliveries, container, false);
    RecyclerView rv  = (RecyclerView) v.findViewById(R.id.deliver_list);
    
    return rv; // <- here's the issue
}

解决方案是返回父视图(v)而不是子视图(rv)。

其他回答

就我而言,我做错了:

...
TextView content = new TextView(context);
for (Quote quote : favQuotes) {
  content.setText(quote.content);
...

代替(好):

...
for (Quote quote : favQuotes) {
  TextView content = new TextView(context);
  content.setText(quote.content);
...

在我的情况下,我不小心从Layout.onCreateView()中返回一个子视图,如下所示:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View v= inflater.inflate(R.layout.activity_deliveries, container, false);
    RecyclerView rv  = (RecyclerView) v.findViewById(R.id.deliver_list);
    
    return rv; // <- here's the issue
}

解决方案是返回父视图(v)而不是子视图(rv)。

我的问题与许多其他答案有关,但需要做出改变的原因略有不同……我试图将一个活动转换为一个片段。所以我把膨胀代码从onCreate移动到onCreateView,但我忘记从setContentView转换到膨胀方法,同样的IllegalStateException把我带到了这个页面。

我改了这个:

binding = DataBindingUtil.setContentView(requireActivity(), R.layout.my_fragment)

:

binding = DataBindingUtil.inflate(inflater, R.layout.my_fragment, container, false)

这就解决了问题。

我也犯了同样的错误,看看我做了什么。我的坏,我试图将相同的视图NativeAdView添加到多个FrameLayouts,通过为每个FrameLayout创建一个单独的视图NativeAdView来解决,谢谢

我尝试了你们建议的所有方法,但都没有成功。

但是,我设法修复它通过移动我所有的绑定初始化从onCreate到onCreateView。

onCreate(){
        binding = ScreenTicketsBinding.inflate(layoutInflater)
}

搬到

onCreateView(...){
            binding = ScreenTicketsBinding.inflate(layoutInflater) 
}