我是一个iOS开发人员,完全没有使用android的经验,所以如果我很难表达我的问题,请原谅我:

我在负责维护的android应用中遇到致命异常。

Fatal Exception: java.lang.RuntimeException Unable to start activity ComponentInfo{…}: java.lang.NullPointerException

我可以从崩溃报告(如下所示)中看到崩溃是在我的一个片段中通过“bindLocation”方法发生的

这是它崩溃的行:
            mLocationHeaderTextView.setVisibility(View.VISIBLE);

显然,问题在于mLocationHeaderTextview为null。使用roboguice注入(inject)了mLocationHeaderTextView,如下所示:
 @InjectView(R.id.filter_location_header)
TextView mLocationHeaderTextView;

现在,我认为该错误是由于我的textView没有被“注入(inject)”引起的。在查看了堆栈跟踪之后,我确定这很可能是在调用bindLocation()之前未调用onViewCreated()的结果。

但是,这是我迷路的地方。我对android非常陌生,所以我不确定onViewCreated方法是否有可能被跳过。我已经在设备上尝试了一百万种东西来尝试重现这种情况,但是我做不到。无论我想尝试使用哪种用户操作,都将调用我的onViewCreated方法,并且我的变量为非Null。也许我误读了堆栈跟踪。我希望下面的堆栈跟踪可以为您提供足够的信息,以帮助我,但如果不能,请告诉我有关此应用程序的其他信息。我无法发布完整的源代码(因为它不属于我),但是我将提供所有可能的信息。

非常感谢你的帮助!

从我的FilterDrawerFragment中:
 @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.fragment_filter_drawer, container, false);

    ButterKnife.inject(this, view);

    return view;
}

@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
    super.onViewCreated(view, savedInstanceState);

    mRulesHeaderReset.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            resetRules();
        }
    });

    if (getActivity() != null && mDrawerLayout == null) {
        mDrawerLayout = (DrawerLayout) getActivity().findViewById(R.id.filter_drawer_layout);

        if (mDrawerLayout != null) {
            mDrawerLayout.setDrawerListener(new DrawerLayout.DrawerListener() {
                @Override
                public void onDrawerSlide(View view, float v) {

                }

                @Override
                public void onDrawerOpened(View view) {
                    NavigationUtils.invalidateOptionsMenu(getActivity());
                }

                @Override
                public void onDrawerClosed(View view) {
                    notifyFiltersChanged();

                    NavigationUtils.invalidateOptionsMenu(getActivity());
                }

                @Override
                public void onDrawerStateChanged(int i) {

                }
            });

            // set a custom shadow that overlays the main content when the drawer opens
            mDrawerLayout.setDrawerShadow(R.drawable.drawer_shadow, GravityCompat.END);
        }
    }

    mlocationChangeButton.setOnClickListener(this);

    bindUI();
}

 private void bindUI() {
    if (isAdded() && mConfiguration != null) {

        // bind the location
        bindLocation();
        …
    }
}

private void bindLocation() {
    if (isAdded() && mConfiguration != null && mConfiguration.isLocationEnabled()) {

        // show the location related items
        mLocationHeaderTextView.setVisibility(View.VISIBLE);//Crash reported here.
        …
            }
        });

    }
}


/**
 * Users of this fragment must call this to update the filter configuration
 */
public void updateConfiguration(FilterConfiguration configuration) {
    if (configuration != null && !configuration.equals(mConfiguration)) {
        mConfiguration = configuration;

        bindUI();
    }
}

然后从中调用updateConfiguration()
LocationFinderFragment:
 @Override
public void onViewCreated(View view, Bundle savedInstanceState) {
    super.onViewCreated(view, savedInstanceState);

    if (getArguments() != null) {
          ………
    if (savedInstanceState == null) {
        mFilterDrawerFragment = FilterDrawerFragment.newInstance();
        getChildFragmentManager()
                .beginTransaction()
                .replace(R.id.filter_drawer, mFilterDrawerFragment)
                .commit();

    } else {
        mFilterDrawerFragment = (FilterDrawerFragment) getChildFragmentManager().findFragmentById(R.id.filter_drawer);
    }

    ………
);
    …………………
    populateFilters();
}


private void populateFilters() {
    // these might be passed into the fragment
    if (mFacets != null) {
        FilterConfiguration config = new FilterConfiguration() {{
        ……………………
        }};

        mFilterDrawerFragment.updateConfiguration(config);

最佳答案

现在我想我看到了问题。

  • 在roboguice中, View 被注入(inject)onViewCreated()中。
  • onViewCreated()onCreateView()之后调用。
  • bindLocation()onCreateView()中调用。

  • 因此,到此时,roboguice尚未注入(inject) View 。

    请在调用bindLocation()之后尝试用onViewCreated()调用super

    10-08 19:07