切换到特定片段会产生奇怪的 java.lang.NullPointerException

Posted

技术标签:

【中文标题】切换到特定片段会产生奇怪的 java.lang.NullPointerException【英文标题】:Switching to a specific fragment gives strange java.lang.NullPointerException 【发布时间】:2015-03-16 21:03:11 【问题描述】:

这是我目前面临的问题。我最近从带有 ADT 插件的 Eclipse 切换到了 android Studio,并且我在 Eclipse 上从未遇到过的错误出现在 Android Studio 中。

当我切换到名为“LineFragment”的特定片段时,我收到以下错误:

java.lang.NullPointerException: Attempt to write to field 'int android.support.v4.app.Fragment.mNextAnim' on a null object reference
        at android.support.v4.app.BackStackRecord.run(BackStackRecord.java:708)
        at android.support.v4.app.FragmentManagerImpl.execPendingActions(FragmentManager.java:1489)
        at android.support.v4.app.FragmentManagerImpl.executePendingTransactions(FragmentManager.java:486)
        at android.support.v4.app.FragmentPagerAdapter.finishUpdate(FragmentPagerAdapter.java:141)
        at android.support.v4.view.ViewPager.populate(ViewPager.java:1073)
        at android.support.v4.view.ViewPager.populate(ViewPager.java:919)
        at android.support.v4.view.ViewPager$3.run(ViewPager.java:249)
        at android.view.Choreographer$CallbackRecord.run(Choreographer.java:767)
        at android.view.Choreographer.doCallbacks(Choreographer.java:580)
        at android.view.Choreographer.doFrame(Choreographer.java:549)
        at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:753)
        at android.os.Handler.handleCallback(Handler.java:739)
        at android.os.Handler.dispatchMessage(Handler.java:95)
        at android.os.Looper.loop(Looper.java:135)
        at android.app.ActivityThread.main(ActivityThread.java:5221)
        at java.lang.reflect.Method.invoke(Native Method)
        at java.lang.reflect.Method.invoke(Method.java:372)
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:899)

这似乎与片段为空有关。我在互联网上搜索过,但只有极少数人遇到过这样的事情。

这是我的片段的代码(它像所有 3 个片段一样扩展了 android.support.v4.app.Fragment)

public class LineFragment extends Fragment

private View v;
private ListView list;
private LineList listAdapter;
private Home home;  // Current activity

public static LineFragment  newInstance(String chaine) 
    LineFragment  fragment = new LineFragment ();
    Bundle args = new Bundle();
    args.putString("LIGNE", chaine);
    fragment.setArguments(args);
    return fragment;


@Override
public void onActivityCreated(Bundle savedState) 
    super.onActivityCreated(savedState);
    registerForContextMenu(list);


@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
    Bundle savedInstanceState) 
    v = inflater.inflate(R.layout.fragment_ligne, container, false); 
    home = (Home) this.getActivity();
    initInterface();
    attachReactions();
    setHasOptionsMenu(true);
    return v;


@Override
 public void onCreateOptionsMenu(Menu menu, MenuInflater inflater)      
    inflater.inflate(R.menu.line_menu, menu);

  MenuItem searchMenuItem = menu.findItem(R.id.action_search);

  SearchManager searchManager = (SearchManager) getActivity().getSystemService( Context.SEARCH_SERVICE );
  SearchView search = (SearchView) MenuItemCompat.getActionView(searchMenuItem);
  SearchViewCompat.setInputType(search, InputType.TYPE_CLASS_TEXT|InputType.TYPE_TEXT_VARIATION_POSTAL_ADDRESS);


search.setSearchableInfo(searchManager.getSearchableInfo(home.getComponentName()));
//search.setSubmitButtonEnabled(true);


int id = search.getContext().getResources().getIdentifier("android:id/search_src_text", null, null);
TextView textView = (TextView) search.findViewById(id);
textView.setTextColor(Color.WHITE);
textView.setHintTextColor(Color.WHITE);

search.setOnQueryTextListener(new GreenOnQueryTextListener(list));

super.onCreateOptionsMenu(menu, inflater);
 
@Override
public void onResume() 
    super.onResume();
    Log.d("OnResume()", "Ligne");


@Override
public void setUserVisibleHint(boolean visible)
    super.setUserVisibleHint(visible);
    if (visible && isResumed())
        //Only manually call onResume if fragment is already visible
        //Otherwise allow natural fragment lifecycle to call onResume
        onResume();
    


/**
 * Initializes the graphical interface of the fragment.
 */
private void initInterface()
    list = (ListView) v.findViewById(R.id.list);
    list.setTextFilterEnabled(true);


/**
 * Sets the reactions of the control elements
 */
private void attachReactions()
    ArrayList<Ligne> lignes = new ArrayList<Ligne>(Globale.engine.getReseau().getLignes().values());
    listAdapter = new LineList(getActivity(), lignes);
    list.setAdapter(listAdapter);
    list.setOnItemClickListener(new LineClickListener(home));

这是我的 PagerAdapter:

public class KiceoFragmentPagerAdapter extends FragmentPagerAdapter

private final int PAGE_COUNT = 3;

    public KiceoFragmentPagerAdapter(FragmentManager fm) 
        super(fm);
        // TODO Auto-generated constructor stub
    


    @Override
    public int getCount() 
        return PAGE_COUNT;
    

    @Override
    public Fragment getItem(int position)      

        switch (position) 
        case 0:
            // Top Rated fragment activity
            return new LineFragment();
        case 1:
            // Games fragment activity
            return new StopFragment();
        case 2:
            // Movies fragment activity
            return new CustomMapFragment();
        

        return new LineFragment();
    

有人知道这是从哪里来的吗?它真的与 Android Studio 有关吗?谢谢

我尝试切换到支持 V13 片段,但它没有改变任何东西。

【问题讨论】:

它似乎与 Android Studio 无关,但可能与您使用的支持库的版本有关。 你认为我应该降级到另一个版本的支持库吗?我目前正在使用这个:编译'com.android.support:support-v4:21.0.3' 我不知道你必须做什么......我只是说问题可能是你使用的版本 x.y.z 与 eclipse 和 AS 你正在使用另一个。 您必须为 PagerAdapter 实现中的某些项目返回 null。 我的寻呼机适配器返回任何位置的片段。好像不是这样的。 【参考方案1】:

只需检查getItem() 是否返回null 以获得Fragment。如果是这样设置默认Fragment

【讨论】:

应该是评论。【参考方案2】:

我设法通过覆盖我的地图片段中的 onDestroy 方法解决了这个问题。

@Override
public void onDestroyView() 
    super.onDestroyView();

    if (this.mapFrag != null
            && getFragmentManager().findFragmentById(
            this.mapFrag.getId()) != null) 

        getFragmentManager().beginTransaction().remove(this.mapFrag)
                .commit();
        this.mapFrag = null;
    

【讨论】:

【参考方案3】:

我找到了另一个决定,尝试使用 Fragments 扩展 android.support.v4.app.Fragment 而不是 android.app.Fragment 并使用 android.app.FragmentTransaction 而不是 android.support.v4.app.FragmentTransaction

我在这篇文章中找到了解决方案:

Trying to remove fragment from view gives me NullPointerException on mNextAnim

【讨论】:

以上是关于切换到特定片段会产生奇怪的 java.lang.NullPointerException的主要内容,如果未能解决你的问题,请参考以下文章

当使用tablayout切换片段时,所有片段都会重新创建

切换到片段选项卡主机中的选项卡时查看寻呼机丢失其内容

切换视图时的 iOS 特定行为

分配给整数时的字符串数组会产生一个奇怪的值[重复]

切换片段时导航重置

当我使用线程将内容打印到控制台时,为啥会产生奇怪的结果?