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();
}
some time in
fragment
throws exception when i use :and i know
getActivity
some time return null instead context but still is problem ! you have any suggest can cover this ?