jpardogo / GoogleProgressBar

Android library to display progress like google does in some of his services.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

null instead context in fragments

abbashosseini opened this issue · comments

some time in fragment throws exception when i use :

//So i use it like this 
getActivity().findViewById(R.id.google_progress).setVisibility(View.INVISIBLE);

and i know getActivity some time return null instead context but still is problem ! you have any suggest can cover this ?

/**
     * Return the {@link FragmentActivity} this fragment is currently associated with.
     * May return {@code null} if the fragment is associated with a {@link Context}
     * instead.
     */
    final public FragmentActivity getActivity() {
        return mHost == null ? null : (FragmentActivity) mHost.getActivity();
    }