android-fragments 正在尝试将片段添加到片段容器FrameLayout

1cosmwyk  于 2022-11-14  发布在  Android
关注(0)|答案(4)|浏览(163)

我创建了一个名为editor.xml的xml文件,其中包含一个FrameLayout。在我的主Activity中,我尝试将我的自定义片段添加到我的FrameLayout中。
我在尝试添加片段时收到的错误是:
类型FragmentTransaction中的add(int,Fragment)方法不适用于参数(int,editorFrag)
但是我的editorFrag扩展了Fragment,所以我对为什么会发生这种情况感到困惑。下面是我为我提到的文件编写的代码。任何帮助都是感激不尽的。
Editor.xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />

editorFrag.java

public class editorFrag extends Fragment
{
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, 
        Bundle savedInstanceState) 
    {

        // Inflate the layout for this fragment
        return inflater.inflate(R.layout.newlevel, container, false);
    }
}

MainActivity.java

public class editorActivity extends FragmentActivity
{
    @Override
    public void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.editor);

        // Check that the activity is using the layout version with the fragment_container FrameLayout
        if(findViewById(R.id.fragment_container) != null)
        {
            // if we are being restored from a previous state, then we dont need to do anything and should
            // return or else we could end up with overlapping fragments.
            if(savedInstanceState != null)
                return;

            // Create an instance of editorFrag
            editorFrag firstFrag = new editorFrag();

            // add fragment to the fragment container layout
            getSupportFragmentManager().beginTransaction().add(R.id.fragment_container, firstFrag);
        }
    } 
}

答道:
Luksprog在下面告诉我检查我的导入来回答这个问题。Eclipse选择导入Fragment的SDK版本而不是我需要的支持版本。谢谢你的帮助。

i7uaboj4

i7uaboj41#

您忘记了执行您的交易。

nhjlsmyf

nhjlsmyf2#

您还忘了调用addtoBackStack()方法,否则当您点击后退按钮时,您的应用程序将关闭。

1rhkuytd

1rhkuytd3#

像这样添加commit()

getSupportFragmentManager().beginTransaction().add(R.id.fragment_container, firstFrag).commit();
iaqfqrcu

iaqfqrcu4#

1-   //Add fragment container in xml file
    
    <androidx.fragment.app.FragmentContainerView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/fragment_container_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    </androidx.fragment.app.FragmentContainerView>

2-  //Implementation of BackStack

        fragmentTransaction.setReorderingAllowed(true);
        fragmentTransaction.addToBackStack("name");

相关问题