findFragmentById在特定活动中返回null

时间:2019-03-05 18:43:54

标签: java android android-fragments

我正在尝试获取片段的实例以在其中调用某些函数。 异常地,我从getFragmentManager()。findFragmentById(id)函数获取null。 但是,在另一个活动中,我可以使用相同的函数getFragmentManager()。findFragmentById(id)获取片段的实例。

这是我无法使用的活动java:

public class SetMapActivity extends AppCompatActivity {
    public int imageId;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_set_map);
        clearSelected(null);

        BoardFragment boardFragment = (BoardFragment)getFragmentManager().findFragmentById(R.id.sm_fragment); // It will be null


        if(boardFragment.boardPositions.contains(R.drawable.sp)) // Null exception here
            findViewById(R.id.sp).setEnabled(false);
        if(boardFragment.boardPositions.contains(R.drawable.ep))
            findViewById(R.id.ep).setEnabled(false);
    }
}

这是该活动的无效xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.user.myapplication.SetMapActivity"
    tools:layout_editor_absoluteY="25dp">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:gravity="center"
        >

        <fragment
            android:id="@+id/sm_fragment"
            android:name="com.example.user.myapplication.BoardFragment"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            tools:layout="@layout/fragment_board"
            />

    </LinearLayout>

</android.support.constraint.ConstraintLayout>

1 个答案:

答案 0 :(得分:1)

我假设您已将app.v4.Fragment扩展到BoardFragment。因此,对于支持库,您应该使用:-

  getSupportFragmentManager() // instead of fragmentManager

所以

  BoardFragment boardFragment = (BoardFragment) getSupportFragmentManager().findFragmentById(R.id.sm_fragment);