其他分享
首页 > 其他分享> > ChildFragmentManager.findFragmentByID()在Android 4.4.2上返回null

ChildFragmentManager.findFragmentByID()在Android 4.4.2上返回null

作者:互联网

我开发了一个应用程序,将片段用作片段的一部分.

public class LoginFragment extends Fragment
   EditTextWithCameraButtonFrag userNameFrag;
   EditTextWithCameraButtonFrag passwordFrag;

 public void onActivityCreated(Bundle savedInstanceState) {
     super.onActivityCreated(savedInstanceState);
     userNameFrag = (EditTextWithCameraButtonFrag)getChildFragmentManager()
            .findFragmentById(R.id.fragment_username);
     passwordFrag = (EditTextWithCameraButtonFrag) getChildFragmentManager()
            .findFragmentById(R.id.fragment_password);

EditTextWithCameraButtonFrag是Fragment的子类型.
这段代码就像在Android 5.1.1上运行的超级按钮一样工作.
但是,在Android 4.4.2上运行它会返回userNameFrage和passwordFrag为null.如此看来,返回的Child FragmentManager找不到字段.

将getChildFragmentManager()与4.4.3一起使用时,需要考虑什么吗?

提前致谢!

编辑:
这是主要片段的XML:
    

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="@dimen/huge"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/login_title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="@dimen/activity_vertical_margin"
        android:gravity="center"
        android:textColor="@color/white"
        android:textSize="40dp" />

    <fragment
        android:id="@+id/fragment_username"
        android:name="com.example.app.fragments.EditTextWithCameraButtonFrag"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <fragment
        android:id="@+id/fragment_password"
        android:name="com.example.app.fragments.EditTextWithCameraButtonFrag"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />



    <Button
        android:id="@+id/login_button"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginEnd="@dimen/huge"
        android:layout_marginStart="@dimen/huge"
        android:layout_marginTop="@dimen/normal"
        android:padding="@dimen/half"
        android:text="Login" />
</LinearLayout>

这是子片段的:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/editText_with_button_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<EditText
    android:id="@+id/text_input_field"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:alpha="0.75"
    android:background="@drawable/edit_text_login_top"
    android:inputType="text"
    android:padding="@dimen/normal" />

<Button
    android:id="@+id/scan_text_view"
    android:layout_width="wrap_content"
    android:background="@android:color/transparent"
    android:layout_height="wrap_content"
    android:layout_alignEnd="@+id/text_input_field"
    android:layout_alignTop="@+id/text_input_field"
    android:layout_alignBottom="@+id/text_input_field"
   />

</RelativeLayout>

解决方法:

从代码中还不清楚这两个片段在哪里添加:

1)在活动中添加(在xml或onCreate方法中)

然后,将这些片段关联到属于Activity的fragemnt管理器.您应该使用getActivity().getFragmentManager().find …

2)在fragemnt xml布局中添加了Fragemnts

然后在调用片段onViewCreated方法后它们将可用

将getChildFragmentManager()用于此片段的xml布局中定义的片段,或此getChildFragmentManager()片段管理器添加的片段.

标签:android-fragments,android-4-4-kitkat,android-5-1-1-lollipop,android,child-fragme
来源: https://codeday.me/bug/20191027/1948341.html